0
我在用下面的代碼問題:HTML下拉列表中發出
<form id="form_shower">
<select id="myselect">
<option value="" selected="selected"></option>
<option value="form_name1">Remove the Association</option>
<option value="form_name2">Copy and associate to new form group</option>
<option value="form_name3">Maintain the old association</option>
</select>
</form>
<form name="form_name1" id="form_name1" style="display:none">
Do stuff that removes the association!
</form>
<form name="form_name2" id="form_name2" style="display:none">
New Internal Form Name: <input type="text" name="newinternalformname" value="">
</form>
<form name="form_name3" id="form_name3" style="display:none">
Do stuff to maintain the old association!
</form>
<script>
$("#myselect").on("change", function() {
$("#" + $(this).val()).show().siblings();
})
</script>
基本上,當我選擇從下拉列表中選擇一個,我得到我想要的(就像現在它只是測試文本),但是當我從列表中選擇一個新選項時,它會追加數據,而不是擺脫與之前選擇的選項關聯的內容。
我從來沒有見過從URL的腳本。劇本是否等同於它? – John 2014-10-30 22:09:59
@John從未看過來自URL的腳本?你如何加載你的jQuery?我不確定你的問題是什麼。我改變了你的HTML和你的JavaScript – 2014-10-30 22:15:33