触发点击 IE 和 Chrome
是否可以使用跨浏览器的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你只需要使用 jQuery...
$('a.societetrigger')[0]
是一个 DOM 元素而不是 jQuery 对象,因此如果你只想要第一个,它就不起作用元素用$()
包裹它:或使用 jQuery
first
函数:第二个代码不适用于所有浏览器,将回调函数附加到
click
事件将触发点击事件...您听起来合理吗?对我来说,这听起来像是一个无限循环。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$()
:or use the jQuery
first
function: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.您没有在 jQuery 对象上调用
click
函数:$('a.societetrigger')[0]
将返回一个 DOM 元素。请尝试以下操作:
You're not calling the
click
function on a jQuery object:$('a.societetrigger')[0]
will return a DOM element.Try the following: