4
如果我對contenteditable物品做「jquery sortable」,該物品將永遠不可編輯。jQuery在contenteditable物品上排序
我要指出,在IE中的每一件事工作正常,我在FF這個問題3.6.8
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$('#sortable').sortable();
});
</script>
</head>
<body>
<span id="sortable">
<p contenteditable="true">test</p>
</span>
</body>
</html>
你不應該在'span'標籤內部有'p'標籤 - 它是無效的HTML,並且可能會導致問題 – 2010-08-29 09:11:19