我遇到了多个Jquery版本的冲突问题。
我有这个插件使用drap并删除表行,然后保存排序,它一直工作得非常好。
<script type="text/javascript" src="/include/RowDragable/js/jquery-1.7.1.js"></script>
<script type="text/javascript" src="/include/RowDragable/js/jquery.tablednd.0.7.min.js"></script>
// The code below.
$('#mytable').tableDnD({
onDragClass: "myDragClass",
onDrop: function(table, row) {
$.post('updateSorting.asp?', {
pagesid : "1",
arr : $.tableDnD.serialize()
});
}
});
现在,我想要包含新版本的Jquery(下面),它与用于&#34; tableDnD&#34;的版本相冲突。
<link rel="stylesheet" href="/include/jquery/jquery-ui.css" type="text/css" />
<script type="text/javascript" src="/include/Jquery/jquery-1.11.1.js"></script>
<script type="text/javascript" src="/include/Jquery/jquery-ui-1.11.0.js"></script>
有没有办法解决这个问题?请指教。
提前致谢,