0

我一直试图让一个可拖动的 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);
        }
    });
});​&lt;/script>
4

1 回答 1

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>
于 2012-11-06T17:04:52.737 回答