HTML DOM text ÊôÐÔ
¶¨ÒåºÍÓ÷¨
text ÊôÐÔ¿ÉÉèÖûò·µ»ØÑ¡ÏîµÄÎı¾Öµ¡£
¸ÃÊôÐÔÉèÖûò·µ»ØµÄÊǰüº¬ÔÚ <option> ÔªËØÖеĴ¿Îı¾¡£Õâ¸öÎı¾»á×÷ΪѡÏîµÄ±êÇ©³öÏÖ¡£
Óï·¨
optionObject.text=sometext
ʵÀý
ÏÂÃæµÄÀý×Ó·µ»ØÏÂÀÁбíÖÐËùÓÐÑ¡ÏîµÄÎı¾£º
<html>
<head>
<script type="text/javascript">
function getOptions()
{
var x=document.getElementById("mySelect");
var y="";
for (i=0;i<x.length;i++)
{
y+=x.options[i].text
;
y+="<br />";
}
document.write(y);
}
</script>
</head>
<body>
<form>
ÇëÑ¡ÔñÄúϲ»¶µÄË®¹û£º
<select id="mySelect">
<option>Æ»¹û</option>
<option>ÌÒ×Ó</option>
<option>Ïã½¶</option>
<option>½Û×Ó</option>
</select>
<br /><br />
<input type="button" onclick="getOptions()" value="Êä³öËùÓÐÑ¡Ïî">
</form>
</body>
</html>