我正在研究C#.net项目,我使用多个javascript库来制作菜单和图像滑块等,但是出现了冲突,我该如何避免呢?
答案 0 :(得分:1)
在加载jQuery库之后,调用$.noConflict();,然后使用jQuery
关键字调用所有对jQuery的调用。 jQuery site的示例:
<script type="text/javascript" src="other_lib.js"></script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$.noConflict();
jQuery(document).ready(function($) {
// Code that uses jQuery's $ can follow here.
});
// Code that uses other library's $ can follow here.
</script>