链接到另一个页面上的 javascript 链接
带有 JS 链接的目标页面:
dest.htm
<html>
..
<a href="javascript:function(parameters);">JS LINK</a>
..
</html>
原始页面:
origin.htm
<html>
..
<a href="dest.htm">Destination page</a>
..
</html>
目前,我正在链接到目标页面。然后用户必须手动单击 JS 函数链接。我可以链接到目标页面,以便在页面加载时启动适当的功能吗?
Destination page with JS link:
dest.htm
<html>
..
<a href="javascript:function(parameters);">JS LINK</a>
..
</html>
Origin page:
origin.htm
<html>
..
<a href="dest.htm">Destination page</a>
..
</html>
Currently, I am linking to the destination page. The user has to then click on the JS function link manually. Can I link to the destination page, such that, on page load, the appropriate function is initiated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许 dest.html 上的
就足够了? :)
Maybe
<body onload="your_function()">
on a dest.html is enough? :)不直接。但是您可以使用特殊的
querystring
来调用该站点,该查询字符串可以由目标页面中的 javascript 检测到。origin.htm
dest.htm
Not directly. But you can call the site with a special
querystring
, which can be detected by your javascript in your destination page.origin.htm
dest.htm