触发点击 IE 和 Chrome

发布于 2025-01-02 21:59:35 字数 401 浏览 1 评论 0原文

是否可以使用跨浏览器的 jQuery 触发点击?

html:

<a id="go-societe" href="#societe" class="societetrigger" >Societe</a>

在 Firefox 中工作,但在 IE 和 chrome 中不起作用:

$('a.societetrigger')[0].click();

在 Firefox、IE 和 chrome 中不起作用:

$('a.societetrigger').click(function(){
    $('a.societetrigger').click();
});

is it possible to trigger a click with jQuery that works cross browser?

html:

<a id="go-societe" href="#societe" class="societetrigger" >Societe</a>

works in firefox but doesn't work in IE and chrome:

$('a.societetrigger')[0].click();

doesn't work in firefox, IE and chrome:

$('a.societetrigger').click(function(){
    $('a.societetrigger').click();
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

与君绝 2025-01-09 21:59:35

是否可以使用跨平台工作的 jQuery 触发点击
浏览器?

是的,你只需要使用 jQuery...

$('a.societetrigger')[0] 是一个 DOM 元素而不是 jQuery 对象,因此如果你只想要第一个,它就不起作用元素用 $() 包裹它:

$($('a.societetrigger')[0]).click();

或使用 jQuery first 函数:

$('a.societetrigger').first().click();

第二个代码不适用于所有浏览器,将回调函数附加到 click 事件将触发点击事件...您听起来合理吗?对我来说,这听起来像是一个无限循环

is it possible to trigger a click with jQuery that works cross
browser?

Yes you just need to use jQuery...

$('a.societetrigger')[0] is a DOM element not a jQuery object, thus it won't work, if you want only the first element wrap it with $():

$($('a.societetrigger')[0]).click();

or use the jQuery first function:

$('a.societetrigger').first().click();

The second code which doesn't work in all the browsers, Attaches callback function to the click event which will trigger the click event... Does it sounds reasonable to you? to me it sounds like an infinite loop.

魔法唧唧 2025-01-09 21:59:35

您没有在 jQuery 对象上调用 click 函数:$('a.societetrigger')[0] 将返回一个 DOM 元素。

请尝试以下操作:

$('a.societetrigger').first().click();

You're not calling the click function on a jQuery object: $('a.societetrigger')[0] will return a DOM element.

Try the following:

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