Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
693 views
in Technique[技术] by (71.8m points)

javascript - need to use jquery-1.min.js and jquery.min.js together

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...