我是 stackoverflow 的新手,我来到这里是因为我找不到关于 html 和 javascript 问题的明确答案。
我想显示一个带有 3 个按钮的 HTML 页面,这些按钮将在单击时执行 3 个脚本。我需要 tab#1 与 tab#2 对话以执行代码,但我一直坚持如何去做——这是我的 HTML 代码:
<!DOCTYPE html>
<html>
<body>
<!-- START STAGE 1 -->
<script>
function stage1()
{
// Here I want to open up a new tab so I'd do:
window.open('http://webpage.com', '_blank');
}
</script>
<!-- START STAGE 2 -->
<script>
function stage2()
{
// From here, I want to execute some JavaScript to the new tab I've opened
}
</script>
<!-- START STAGE 3 -->
<script>
function stage3()
{
// Again, I want to execute another script on the new tab I've opened
}
</script>
<button type="button" onClick="stage1()">STAGE1</button>
<hr />
<button type="button" onClick="stage2()">STAGE2</button>
<hr />
<button type="button" onClick="stage3()">STAGE3</button>
</body>
</html>
如果有人可以重新编写此代码并在 3 中留出一个空格,以便我的代码从 tab#1 在 tab#2 上执行,我将不胜感激。
先感谢您!- 对不起,我有点菜鸟哈哈。干杯,德克兰土地