Jquery- noConflict() not suit for opera?
I开发者_高级运维 have added many jquery plugins in one page. and I use var $j = jQuery.noConflict();
I tested well under IE6, IE8 and firefox4. But in opera10, it just show the first jQuery effective. I guess the problem is in jQuery.noConflict()
, is it not suit for opera?
jQuery.noConflict()
works fine in Opera - it sounds like you most likely have a <script>
include issue that browsers are handling differently, for example an invalid self-closing <script />
tag, code within the same tag with a src
attribute, etc.
精彩评论