可能重複:
Can I use multiple versions of jQuery on the same page?使用兩種版本的jQuery在一個頁面
嗨,
頁面使用jQuery 1.4.4版本,但我的劇本的要求之一較舊的版本。 我插入舊的jQuery版本,並設置新的名字:
jq132("#docs_file ul").sortable({ opacity: 0.6, cursor: 'move', update: function()
物權法秀(火狐debuger):jq132( 「#docs_file UL」)排序
<script type="text/javascript">var jq132 = $.noConflict(true);</script>
然後我在這一行出現錯誤是不是一個函數
jq132(document).ready(function()
{
jq132(function()
{
jq132("#docs_file ul").sortable({ opacity: 0.6, cursor: 'move', update: function()
{
var order = $(this).sortable("serialize") + '&action=Listings';
jq132.post("order.php", order, function(theResponse){
jq132("#error").html(theResponse);
});
}
});
});
});
的問題不應該是「如何使用同一頁上的兩個jQuery的版本」,而是「如何我修理$ ancient_broken_plugin與最新版本的jQuery工作」的, – ThiefMaster 2011-01-30 17:34:00