我一直试图让一个可拖动的 Jquery UI工作,但我遇到了以下错误,我似乎无法弄清楚如何修复它。
有任何想法吗?
-编辑-这是代码:
<script>
jQuery(function() {
jQuery( "#draggable3" ).draggable({
containment: "#containment-wrapper",
cursor: "move",
scroll: false,
stop: function(e , ui) {
jQuery("#mottox").val($(this).position().left);
jQuery("#mottoy").val($(this).position().top);
}
});
});</script>