試圖獲得此問題的答案。如何關閉JavaScript中的可拖動選項? api文檔是說在javascript中設置可拖動選項
.draggable({disable:true});
或
.draggable( 「選項」, 「禁止」,TRUE);
對我而言也不是。這裏是我擁有的圖書館。
<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css">
<script src="http://jqueryui.com/jquery-1.5.1.js"></script>
<script src="http://jqueryui.com/ui/jquery.ui.core.js"></script>
<script src="http://jqueryui.com/ui/jquery.ui.widget.js"></script>
<script src="http://jqueryui.com/ui/jquery.ui.mouse.js"></script>
<script src="http://jqueryui.com/ui/jquery.ui.resizable.js"></script>
<script src="http://jqueryui.com/ui/jquery.ui.draggable.js"></script>
我javascript我試圖關閉這樣的代碼中的可拖動選項。
editable.parent().draggable({disable: true});
editable.parent().draggable("option", "disable", true);
editable.parent()確實找到了正確的元素,但可拖動選項未關閉。
感謝您的幫助。