Option selected 屬性
Option 對(duì)象定義和用法
selected 屬性可設(shè)置或返回選項(xiàng)的 selected 屬性的值。
該屬性設(shè)置選項(xiàng)的當(dāng)前狀態(tài),如果為 true,則該選項(xiàng)被選中。該屬性的初始值來(lái)自 <option> 的 selected 屬性。
語(yǔ)法
設(shè)置 selected 屬性:
optionObject.selected=true|false
返回 selected 屬性:
optionObject.selected
瀏覽器支持
所有主要瀏覽器都支持 selected 屬性
實(shí)例
實(shí)例
本例可更改下拉列表中的被選選項(xiàng):
<html>
<head>
<script>
function displayResult()
{
document.getElementById("orange").selected=true;
}
</script>
</head>
<body>
<form>
Select your favorite fruit:
<select>
? <option id="apple">Apple</option>
? <option id="orange">Orange</option>
? <option id="pineapple" selected="selected">Pineapple</option>
? <option id="banana">Banana</option>
</select>
</form>
<button type="button" onclick="displayResult()">Select Orange</button>
</body>
</html>
<head>
<script>
function displayResult()
{
document.getElementById("orange").selected=true;
}
</script>
</head>
<body>
<form>
Select your favorite fruit:
<select>
? <option id="apple">Apple</option>
? <option id="orange">Orange</option>
? <option id="pineapple" selected="selected">Pineapple</option>
? <option id="banana">Banana</option>
</select>
</form>
<button type="button" onclick="displayResult()">Select Orange</button>
</body>
</html>
嘗試一下 ?
Option 對(duì)象
更多建議: