HTML DOM value ÊôÐÔ
¶¨ÒåºÍÓ÷¨
value ÊôÐÔÉèÖûò·µ»Ø textarea µÄÎı¾¡£
Óï·¨
textareaObject.value=text
ʵÀý
±¾Àý·µ»Ø textarea ÔªËØµÄÎı¾£º
<html>
<head>
<script type="text/javascript">
function alertValue()
{
alert(document.getElementById('txt1').value
);
}
</script>
</head>
<body>
<textarea id="txt1">
Hello world....This is a text area
</textarea>
<br />
<input type="button" onclick="alertValue()" value="Alert value" />
</body>
</html>