我想知道是否有jQuery.noconflict
用于整个文件而不编辑文件本身?
我的意思是
<script type="text/javascript">
var jQuery = jQuery.noConflict();
</script>
然后将路径放到包含jQuery
而不是$
<script src="http://www.domain.com/script.min.js"></script>
所以在我看来,它想像
<script type="text/javascript"> - opens noconflict
var jQuery = jQuery.noConflict(); - the variable
<script src="http://www.domain.com/script.min.js"></script> - the file which should use the variable
</script> - closing noconflict
有可能:)?
感谢您的任何建议,我的问题是,我无法访问这些文件,我需要让它们工作。因为现在,它会警告jQuery is not a function
因此我没有在任何地方宣布它;)