如何使用 Javascript 单击带有超链接的图像?
我希望为此使用的页面的 HTML 如下:
<A HREF= "http://www.example.com"
TARGET="_new" status="Home Directory" title="Home Directory"
urn="Home Directory" FOLDER="http://www.example.com"><IMG align=textTop border="0" src="images/buttons/mywork.gif" alt="Select this icon to show your Home Folder" ></td>
How can I Analog a click on this hyperlinked image just using Javascript?我没有此页面的编辑权限,因此我需要使用页面中已有的内容(上方)
The HTML of the page I wish to use for this is as follows:
<A HREF= "http://www.example.com"
TARGET="_new" status="Home Directory" title="Home Directory"
urn="Home Directory" FOLDER="http://www.example.com"><IMG align=textTop border="0" src="images/buttons/mywork.gif" alt="Select this icon to show your Home Folder" ></td>
How can I simulate a click on this hyperlinked image just using Javascript? I don't have edit privileges for this page so I need to work with what I have already got in the page (above)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 firefox 的 firebug 插件并从控制台编写 javascript。谷歌浏览器也有一个控制台。
You can use firebug plugin for firefox and code your javascript from the console. Google chrome also has a console.
给它一个启动 ID,然后使用“apply”调用
Give it an id for a start and then invoke using "apply"
我会使用 jQuerify 插件。然后在 Firebug 控制台中输入
$('a').click();
。I would use the jQuerify plug-in. Then type
$('a').click();
in the Firebug console.