2013-02-28 86 views
0

我想用这个中古立式滑块实现:http://www.elmundio.net/projects/verticalSlider/使用这个文件:JQuery的“包括”混乱

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" /> 
     <link href="http://www.elmundio.net/projects/verticalSlider/verticalSlider.css" rel="stylesheet" type="text/css" /> 
     <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script> 
     <script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.js"></script> 
     <script src="http://www.elmundio.net/projects/verticalSlider/verticalSlider.js"></script> 

,但我也需要使用这个文件我其他的东西:

<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css"/> 
     <script src="jquery-1.9.1.js"> </script> 
     <script src="jquery-ui.min.js"></script> 

我怎样才能实现这些文件之间的兼容性。

+0

我首先至少试着看看垂直滑块是否可以与jQuery 1.9.1一起使用。如果是这样,那么没问题!你也可以问你自己的代码是否真的需要1.9.1版本。如果你绝对需要这两个版本,那么你需要'noConflict'来保持它们的独立。 – 2013-02-28 14:48:26

+0

[我可以在同一页上使用多个版本的jQuery吗?](http://stackoverflow.com/questions/1566595/can-i-use-multiple-versions-of-jquery-on-the-same -页) – 2013-02-28 15:05:10

回答