0

我从JQuery.noConflict()文档中获得了以下代码

<script type="text/javascript" src="other_lib.js"></script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
  $.noConflict();
  jQuery(document).ready(function($) {
    // Code that uses jQuery's $ can follow here.
  });
  // Code that uses other library's $ can follow here.
</script>

正如我们所见,ready方法回调函数接受一个参数,但我们在哪里传递这个参数?

4

1 回答 1

3

"We"没有将它传递给函数。该jQuery库将jQueryAPI 本身(即 jQuery 对象)传递给函数回调。

另请参阅:避免与其他库的冲突

于 2013-05-21T00:56:14.277 回答