0

我们$在 JQWIDGETS 中有任何替代方案吗?我尝试过使用 jquery,但它不起作用。它在使用 jquery 并jqWidgets在同一页面中产生问题。

4

1 回答 1

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

更多信息https://api.jquery.com/jQuery.noConflict/

于 2014-03-20T07:45:37.143 回答