admin管理员组文章数量:1345891
I have a confirmation popup that opens when a user clicks on this link:
<a onClick="openPopup('#popup1')">foo</a>
here is the relevant JavaScript:
function openPopup(id) {
$(id).show();
event.preventDefault();
$(id).addClass('is-visible');
$(id).css("z-index", "999999999999999999999999");
}
In Safari and Chrome it works fine. In Firefox, however, the trigger does not seem to work. Any ideas why?
I already tried to change the link like so:
<a href="javascript:openPopup('#popup1');">foo</a>
no changes though. thanks for your help!
I have a confirmation popup that opens when a user clicks on this link:
<a onClick="openPopup('#popup1')">foo</a>
here is the relevant JavaScript:
function openPopup(id) {
$(id).show();
event.preventDefault();
$(id).addClass('is-visible');
$(id).css("z-index", "999999999999999999999999");
}
In Safari and Chrome it works fine. In Firefox, however, the trigger does not seem to work. Any ideas why?
I already tried to change the link like so:
<a href="javascript:openPopup('#popup1');">foo</a>
no changes though. thanks for your help!
Share Improve this question asked Apr 14, 2015 at 20:34 FrankFrank 6341 gold badge9 silver badges33 bronze badges 1- 2 If you're using jQuery as the tags indicate, the better practice would be to catch the click event in a $('selector).on('click', function(){}) Inline javascript bees a major maintenance nightmare. – bpeterson76 Commented Apr 14, 2015 at 20:36
2 Answers
Reset to default 7In Firefox, however, the trigger does not seem to work. Any ideas why?
Firefox does not make the event object global. You have to pass it along to the event handler, e.g.
onClick="openPopup('#popup1', event)"
Since you are using jQuery, you should bind the handler with jQuery so that you can also use jQuery's augmented event object.
I think what you might be experiencing is a problem with the uppercase C in onClick
. Try changing it to onclick
(all lowercase).
See this question: onclick or onClick?
Also you may have trouble accessing the event
object:
Access global event object in Firefox
But it the case of your example I don't think you will need it.
event.preventDefault
prevents the browser trying to follow a href
of a link when it is clicked (you don't have an href
in your example). If the link gets followed, and your browser navigates to another page you will not get a chance to see any error that may have happened and it can be very frustrating to work out what is going on, so if you do need to use event.preventDefault
make sure it is on the first line of the function it is in
本文标签: jqueryJavaScript onClick does not work in FirefoxStack Overflow
版权声明:本文标题:jquery - JavaScript onClick does not work in Firefox - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743818793a2544411.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论