2
我在我的網頁上有拖放功能。拖動的div包含2個輸入>隱藏,並將其放在另一個div上。如何在jQuery UI中獲取拖動元素的子元素
在drop事件中,我想獲取兩個輸入>隱藏在變量中的值。
下面是我的可拖動結構。
<div class="srcfield" title="Drag and map Last Name!">
<span><img src="images/cursor1.png" height="14" width="14" border="0"/> First Name</span>
<input type="hidden" name="FieldName" value="FirstName"/>
<input type="hidden" name="SourceType" value="B"/>
當我這樣做:
ui.draggable.children("input").attr("name")
它給了我第一個隱藏字段只。
如何才能得到2隱藏場
感謝 WK