我目前正在使用一个 jQuery UI,我需要将 x 和 y 坐标发送到不同的页面。
我目前正在使用它,其中“可拖动 ui”包含在 510x100 像素的框中。
我需要的是获取可拖动的最终位置的 X 坐标和 Y 坐标,并在一个文本输入(表单)中打印 X 的坐标,在另一个文本输入(表单)中打印 Y。
关于如何做到这一点的任何想法?
<style>
.draggable { width: 1px; height: 1px; padding: 0.5em; float: left; margin: 0 1px 1px 0; }
#containment-wrapper { width: 510px; height:110px; border:2px solid #ccc; padding: 10px; }
h3 { clear: left; }
</style>
<script>
$(function() {
$( "#draggable3" ).draggable({ containment: "#containment-wrapper", scroll: false });
});
</script> <div id="containment-wrapper">
<div id="draggable3" class="draggable ui-widget-content">
<p>Motto</p>
<div id="containment-wrapper">
<div id="draggable3" class="draggable ui-widget-content">
<p>Motto</p>
---
Would like to display in a box like this
<input size="10" type="text" id="mottox" name="mottox" readonly/>
<input size="10" type="text" id="mottoy" name="mottoy" readonly/>