Select remove() Method
Select 對象定義和用法
remove() 方法用于從下拉列表刪除選項。
語法
selectObject.remove(index)
參數(shù) | 描述 |
---|---|
index | 必需。規(guī)定要刪除的選項的索引號。 |
瀏覽器支持
所有主要瀏覽器都支持 remove() 方法
實例
實例
下面的例子可從列表中刪除被選的選項:
<html>
<head>
<script>
function removeOption()
{
var x=document.getElementById("mySelect");
x.remove(x.selectedIndex);
}
</script>
</head>
<body>
<form>
<select id="mySelect">
??<option>Apple</option>
??<option>Pear</option>
??<option>Banana</option>
??<option>Orange</option>
</select>
<input type="button" onclick="removeOption()" value="Remove option">
</form>
</body>
</html>
<head>
<script>
function removeOption()
{
var x=document.getElementById("mySelect");
x.remove(x.selectedIndex);
}
</script>
</head>
<body>
<form>
<select id="mySelect">
??<option>Apple</option>
??<option>Pear</option>
??<option>Banana</option>
??<option>Orange</option>
</select>
<input type="button" onclick="removeOption()" value="Remove option">
</form>
</body>
</html>
嘗試一下 ?
更多實例
Select 對象
更多建議: