有没有办法使用noconflict文件

时间:2014-02-27 23:58:12

标签: jquery

我想知道是否有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因此我没有在任何地方宣布它;)

0 个答案:

没有答案