need to use jquery-1.min.js and jquery.min.js toge

2019-09-29 17:04发布

I need to use both below files but just one of the can work if both of the use in pae

<script src="jquery.min.js"></script> 
<script src="jquery-1.min.js"></script>//just this work

Or if change order

<script src="jquery-1.min.js"></script> 
<script src="jquery.min.js"></script>//just this work

I use a drag and drop plugin , this need jquery.min.js and my theme need to jquery-1.min.js for be responsive

1条回答
相关推荐>>
2楼-- · 2019-09-29 17:50

You should be able to do this when you use noConflict.

<!-- load jQuery-1 -->
<script type="text/javascript" src="jquery-1.min.js"></script>
<script type="text/javascript">
    var jQuery_1_min = $.noConflict(true);
</script>

<!-- load jQuery -->
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript">
    var jQuery_min = $.noConflict(true);
</script>

Now whenever you need one of these files you can do this.

//example
$jQuery_min('.selector').live('click', function(){  
    //do something  
});  

If it still wont work I dont know anymore... This is the way everybody does it. Quick google search.

查看更多
登录 后发表回答