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