1

嗨,我在我的 magento 网站上使用jQuery Selectbox 插件(从http://code.google.com/p/select-box/ 获得

添加此插件后,我的菜单下拉菜单和事件计时器无法正常工作。为了消除这种冲突,我尝试通过更改

<script type="text/javascript">
$(function () {
    $("#language").selectbox();
});
</script>

<script type="text/javascript">
jQuery.noConflict();

(function($) {

$(document).ready(function() {
$("#language").selectbox();
});

})(jQuery);  </script>

但到目前为止还没有运气。请给我你的想法来解决这个问题。

提前致谢。

4

1 回答 1

1

I just added jQuery.noConflict(); at the end of my js files. Original source : http://blog.ecommercesoftwaresolutionsonline.com/archives/174/how-to-avoid-the-conflict-while-using-jquery-functionality-in-magento.html

Thanks a ton.

于 2012-07-24T07:57:53.960 回答