2009-12-18 48 views
0

海滑動條,創建使用jQuery 1.2.1

我有它使用的jQuery 1.2.1一個項目,我無法更新版本。我需要創建一個與jQuery UI示例(http://jqueryui.com/demos/slider/#steps)相同的增量滑動條。傳統的下載jQuery UI是1.2.6,所以即使這樣也不會削減芥末。

有誰知道的方式來模擬相同的功能使用jQuery的舊版本,甚至不知道在哪裏可以下載一個版本的jQuery UI的的是使用jQuery 1.2.1兼容嗎?

另外,有沒有人知道任何問題,如不推薦使用的函數,如果我將jQuery從1.2.1更新到1.7.2,可能會導致問題,因爲這將是我理想的所有顯而易見的理由。

任何幫助將apprecaited。 鉭

回答

3

沒問題。只需使用兩個版本的jQuery在同一時間

... 
<link rel="stylesheet" href="themes/base/jquery-ui.1.7.2.css" type="text/css" /> 
//include 1.3.2 + UI 
<script src="jquery-1.3.2.min.js"></script> 
<script src="jquery-ui-1.7.2.min.js"></script> 
//call noConflict. Now you can reference the new jQuery via $j instead of $ 
<script type="text/javascript">var $j = jQuery.noConflict(true);</script> 
//include 1.2.1 which is normally available via $ and jQuery 
<script src="jquery-1.2.1.js"></script> 
... 

Demopage:http://jsbin.com/ofuma

+0

甜,這是工作。乾杯! –

+0

我希望我可以給你更多的票,謝謝你這麼多的偉大的演示頁! – goggin13

0

你爲什麼不嘗試,包括谷歌託管的jQuery:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script> 

,只是註釋掉當前版本。然後你可以看到一切是否保持兼容。我原以爲這會比嘗試使用舊版本更容易。