jquery与页面中的其他jquery冲突

时间:2013-03-11 01:30:21

标签: jquery

我遇到一些与其他jquery冲突的jquery的问题...你能告诉我我是否正确编码。

<script type="text/javascript">
jQuery(function(){
    var $mov=$(document);
      $mov.ready(function(){
    (".movie").mb_YTPlayer();
    });
});
</script>

2 个答案:

答案 0 :(得分:2)

你可以尝试一下:

//Relinquish jQuery's control of the "$" variable.
$.noConflict();
jQuery(document).ready(function($) {
  // Code that uses jQuery's $ can follow here.
  $(".movie").mb_YTPlayer();
});

使用$.noConflict将允许您使用多个jQuery实例或使用$避免干扰其他库。

看起来您只想将.mb_YTPlayer()包装在准备好的文档中。您在$上也遗漏了(".movie")

我不确定你要用var $mov=$(document); ...

完成什么

答案 1 :(得分:0)

jQuery函数返回一个对象,因此您的代码有效。您可以在变量范围内的变量上调用jQuery函数。

但我不知道你的意思是“有些jQuery与其他jQuery冲突”