Option text 屬性
Option 對象定義和用法
text 屬性可設(shè)置或返回選項(xiàng)的文本值。
提示: 該屬性設(shè)置或返回的是包含在 <option> 元素中的純文本。這個(gè)文本會(huì)作為選項(xiàng)的標(biāo)簽出現(xiàn)。
語法
設(shè)置 text 屬性:
optionObject.text="text"
返回 text 屬性:
optionObject.text
瀏覽器支持
所有主要瀏覽器都支持 text 屬性
實(shí)例
實(shí)例
下面的例子返回下拉列表中所有選項(xiàng)的文本:
<html>
<head>
<script>
function displayResult(selTag)
{
var x=selTag.options[selTag.selectedIndex].text;
alert("You selected: " + x);
}
</script>
</head>
<body>
<form>
Select your favorite fruit:
<select onchange="displayResult(this)">
? <option>Apple</option>
? <option>Orange</option>
? <option>Pineapple</option>
? <option>Banana</option>
</select>
</form>
</body>
</html>
<head>
<script>
function displayResult(selTag)
{
var x=selTag.options[selTag.selectedIndex].text;
alert("You selected: " + x);
}
</script>
</head>
<body>
<form>
Select your favorite fruit:
<select onchange="displayResult(this)">
? <option>Apple</option>
? <option>Orange</option>
? <option>Pineapple</option>
? <option>Banana</option>
</select>
</form>
</body>
</html>
嘗試一下 ?
更多實(shí)例
Option 對象
更多建議: