I want this script to add an option to the list.
When you open the list I want the options to be test
and hello
What am I doing wrong?
<SCRIPT>
function runList(){
document.getElementById('list').value = "<option>hello</option>";
}
</SCRIPT>
<FORM NAME="myform" ACTION="" METHOD="GET">
Your Options:
<INPUT TYPE="button" NAME="button" VALUE="Click" onClick="runList()"/>
<SELECT NAME="list" ID="list">
<OPTION>test</OPTION>
</SELECT>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…