這是一個非常簡單的選擇欄。爲什麼它不起作用?添加新選項以選擇菜單
<html>
<form>
<label>
<select id="sel1">
<option> op1 </option>
<option> op2 </option>
<option> op3 </option>
</select>
<input onclick="s()" type="submit" value=" ok! ">
</label>
</form>
<script>
function s(){
document.getElementById("sel1").innerHTML += "<option> op4 </option>";
}
</script>
</html>
如果我想讓人們添加新選項,我需要在其上添加一些變量。我如何添加php變量而不是op4,op5等?
的innerHTML將取代'sel1'元素應有盡有,讓你最終將不得不ONY一個選項有.. – whatever
@whatever不完全是,OP使用'+ ='。 – undefined
@Vohuman是的... – whatever