使用 javascript 在点击另一个链接时触发链接
我知道如何创建 onclick 事件处理程序来运行脚本。我想知道是否可以在 html 文档中包含两个超链接,然后单击一个超链接会触发另一个超链接(我假设通过每个 onclick 事件处理程序和 DOM ID 等)
谢谢。
I know how to create an onclick event handler to run a script. I want to know if it is possible to have two hyper links in an html doc, and then click one that would trigger another ( I would assume via per onclick event handlers and DOM ID's etc.)
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为
click()
是 IE 特定的。尝试单击第一个超链接:或者您可以尝试:
了解有关事件的更多信息检查此
I think
click()
is IE specific. try on click of first hyperlink:OR you can try :
to know more about Events check this
如果您只想将页面导航到第二个链接的
href
:否则您可以调度点击事件,如 Pranav 提到的:
请参阅 dispatchEvent 了解详细信息。
If you just want to navigate the page to the second link's
href
:Otherwise you can dispatch a click event, as Pranav mentioned:
See dispatchEvent for details.