Select remove() Method
Select 對(duì)象定義和用法
remove() 方法用于從下拉列表刪除選項(xiàng)。
語(yǔ)法
selectObject.remove(index)
參數(shù) | 描述 |
---|---|
index | 必需。規(guī)定要?jiǎng)h除的選項(xiàng)的索引號(hào)。 |
瀏覽器支持
所有主要瀏覽器都支持 remove() 方法
實(shí)例
實(shí)例
下面的例子可從列表中刪除被選的選項(xiàng):
<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>
嘗試一下 ?
更多實(shí)例
Select 對(duì)象
更多建議: