【发布时间】:2017-06-17 10:48:41
【问题描述】:
如何使用 Javascript 更改 DropDownList 中的默认选定值?
我是 JavaScript 新手,一直在更改下拉列表中的默认选定值。 在这里,我想将我的默认选择值“111”更改为新值。在我将文本(例如“abc”)输入模态并且当我点击“确定”按钮时,它必须更改。现在它必须在我从文本框中获得的下拉列表中显示默认选择(“abc”)的模态。而且列表中的旧值也没有改变。
代码片段:
<form>
<select id="myList">
<option>111</option>
<option>222</option>
<option>333</option>
</select> <br>
<br>
</form>
<!-- Trigger/Open The Modal -->
<button id="myBtn">Open Modal</button>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<input type="text" id="addtext" size="50" /><br>
Write & add text in the Dropdown list..</text>
<br><br>
<button id="okBtn">OK</button>
</div>
</div>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the button that add text in the dropdown
var btn1 = document.getElementById("okBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
btn1.onclick = function(){
//var element = document.getElementById('addtext');
var y = document.getElementById("addtext");
var x = document.getElementById("myList");
var option = document.createElement("option");
option.text = y.value;
x.add(option, option.defaultSelected, x[0] );
modal.style.display = "none";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
我认为我做错了什么
option.text = y.value;
x.add(option, option.defaultSelected, x[0] );
【问题讨论】:
标签: javascript java jquery