function message(){ alert("这里显示summary的字体数量,怎么获得他的value属性"); }请写入个人简介,不少于200字!
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> 文本框内容改变事件 </title>
<script type="text/javascript">
function message(){
//alert("您改变了文本内容!");
var txtChange=document.getElementById("summary").value;//获取文本框里面的值。
alert(txtChange);
}
</script>
</head>
<body>
<form>
个人简介:<br>
<textarea name="summary" id="summary" cols="60" rows="5" onchange="message()">请写入个人简介,不少于200字!</textarea>
</form>
</body>
</html>
document.getElementById().value 获取value,上面打多一个s了
document.getElementsById().value 获取value
document.getElementsByName()获取name,value的话句不知道了,应该不能获取吧
大神们,球指教