我一直试图让Jquery UI draggable工作,但我遇到了以下错误,我似乎无法弄清楚如何修复它。
有什么想法吗?
-Edit-这是代码:
<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>
答案 0 :(得分:2)
您的代码中有一个额外的字符,请参阅下文:
<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>
?
</script>
复制下面的代码并改为使用它:
<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>