jqwidgets中的“美元符号”替代品

时间:2014-03-20 07:42:06

标签: jquery jqwidget

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

1 个答案:

答案 0 :(得分: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/