如何使用 Javascript 单击带有超链接的图像?

发布于 2025-01-01 23:45:33 字数 467 浏览 0 评论 0原文

我希望为此使用的页面的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

郁金香雨 2025-01-08 23:45:33

您可以使用 firefox 的 firebug 插件并从控制台编写 javascript。谷歌浏览器也有一个控制台。

You can use firebug plugin for firefox and code your javascript from the console. Google chrome also has a console.

你在我安 2025-01-08 23:45:33

给它一个启动 ID,然后使用“apply”调用

var x = document.getElementById("linky");
x.onclick.apply(x);

Give it an id for a start and then invoke using "apply"

var x = document.getElementById("linky");
x.onclick.apply(x);
国际总奸 2025-01-08 23:45:33

我会使用 jQuerify 插件。然后在 Firebug 控制台中输入 $('a').click();

I would use the jQuerify plug-in. Then type $('a').click(); in the Firebug console.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文