如何在点击时执行一个页面的javascript以触发另一页面上的点击事件?
这就是第 1 页上的链接的样子:
<li id="click1">
<a href="products.htm#test4Handle1">TNT Cable System</a>
</li>`
这就是我想要在第 2 页上触发的内容:
<a name="test4Handle1">
<button onclick="$('#test4Handle1').click()">TNT Cable System</button>
</a>
我对 jquery 的尝试
$("test4Handle1").observe('domready',function() {
document.getElementById("test4Handle1").click();
});
哪个页面应该包含 javascript 页面 1 或 2?
This is what the link looks like on page 1:
<li id="click1">
<a href="products.htm#test4Handle1">TNT Cable System</a>
</li>`
This is what I want to trigger on page 2:
<a name="test4Handle1">
<button onclick="$('#test4Handle1').click()">TNT Cable System</button>
</a>
my attempt at jquery
$("test4Handle1").observe('domready',function() {
document.getElementById("test4Handle1").click();
});
What page should have the javascript page 1 or 2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查这是否对您有帮助。
以下是我工作的一个示例
,这里是 Page1.html
,这里是 Page2.html
Check if this helps you.
Following is one example I got working
Here is Page1.html
And here Page2.html
在第 2 页上,粘贴此代码
On Page 2, paste this code
如果我理解正确的话,我不得不说你正在寻找的东西是不可能的。脚本被限制在加载它们的页面上。虽然它们可以触发新窗口的创建,但不可能与这些窗口、它们的 DOM 以及它们正在运行的脚本进行交互。
If I understand you correctly, I would have to say that what you are looking for is not possible. Scripts are jailed to the pages on which they are loaded in. While it is possible for them to trigger the creation of new windows, it is not possible to interact with those windows, their DOM's and the scripts they are running.