2013-03-30 56 views
0

我在網站上使用jquery v1.4.2,這個網站非常龐大。我一直在開發這個網站超過2年了。我想在我的一個表格上使用jquery datetime picker,但它似乎不適用於jquery v1.4.2。所以我包括jquery library v1.9.1,我開始在我的網站上發現了很多錯誤。像.live不是一個函數,因爲它在最新版本的jQuery中已被棄用。比我試過jquery .noConflict()方法後,我開始得到更多的錯誤。我非常想使用它,我不知道如何在不改變父級jquery庫文件的情況下使用它。任何有關此事的幫助將不勝感激。由於如何讓jquery datetime picker在jquery v1.4.2上工作

+1

難道你看[jQuery的遷移(http://blog.jquery.com/2013/02/16/jquery-migrate -1-1-1發佈/)? – adeneo

回答

0

試試這個

jQuery的遷移

This plugin can greatly simplify the process of moving older jQuery code to version 1.9.0 or higher of jQuery by identifying deprecated features. It can also restore those features so that older code can run without needing any changes at all. We strongly recommend that you use this plugin in your initial jQuery 1.9 upgrade — make it easy on yourself, that’s why we wrote this plugin!

<script src="http://code.jquery.com/jquery-1.9.1.js"></script> 
<script src="http://code.jquery.com/jquery-migrate-1.1.1.js"></script> 
+0

讓我試試這個 –

+0

我已經用你建議的替換了我的jquery文件,並且我還包含了jquery migrate libray,但是現在我得到以下錯誤TypeError:$(...)。自動完成不是一個函數 –

+0

它似乎現在工作正常:)謝謝 –