0
我有多個自動完成文本框與多個隱藏字段配對。我怎麼做?防爆。 textbox1:name = hiddenfield1:Id,textbox2:name = hiddenfield2:Id。 我已經能夠做1自動完成和1隱藏字段的工作。如何在jQuery UI中爲多個自動填充文本框和隱藏字段分配一個值?
這裏是我的腳本代碼:
<script type="text/javascript">
$(document).ready(function() {
$('.auto').autocomplete({
source: "search.php",
focus: function(event, ui) {
$(idField).val(ui.item.value);
$(this).val(ui.item.label);
return false;
},
select: function(event, ui) {
$(this).val(ui.item.label);
$("#hidden").val(ui.item.value);
return false;
}
//minLength: 3
});
});
</script>
<p>Type the name of a band: <input type="text" class="auto" /></p>
<p>Type the name of a band: <input type="text" class="auto" /></p>
<input name="hidden" id="hidden" type="hidden" />
<input name="hidden" id="hidden" type="hidden" />
先生/女士你的答案會有很大的幫助,非常感謝。
我試過了,但由於某些原因,它不工作,它不能將值放在隱藏字段中。 – 2012-02-07 16:44:38
它終於奏效了。這裏是腳本:select:function(event,ui){// {(this)this.val (ui.item.label);} $(this).val(ui.item.label); \t \t var a =「#」+ $(this).attr('id'); \t \t $(a +「hidden」).val(ui.item.value); 返回false; – 2012-02-07 17:43:22
太棒了,很高興你來到了正確的位置......在你的腳本上面看起來'_'可能被遺漏了,但是如果它工作的太好了! – 2012-02-08 07:04:11