盡管<input type="text" />和<textarea />是不同元素
<html>
<head>
<title>Retrieying a Textbox Value Example</title>
<script type="text/javascript">
function getValues(){
var oTextbox
var oTextbox
alert("The value of txt
"The value of txt
}
</script>
</head>
<body>
<input type="text" size="
<textarea rows="
<input type="button" value="Get Values" onclick="getValues()"/>
</body>
</html>
這個例子顯示了兩個文本框
也可以在兩個文本框中輸入一些內容
因為value特性是個字符串
<html>
<head>
<title>Retrieving a Textbox Length Example</title>
<script type="text/javascript">
function getLengths(){
var oTextbox
var oTextbox
alert ("The length of txt
+"The length of txt
}
</script>
</head>
<body>
<input type="text" size="
<textarea rows="
<input type="button" value="Get Lengths "onclick="getLengths()" />
</body>
</html>
這個例子中使用value的length特性來判斷每個文本框中的字符數
這個value特性也可用於給文本框設置新內容
<html>
<head>
<title>Changing a Textbox Value Example</title>
<script type="text/javascript">
function setValues(){
var oTextbox
var oTextbox
oTextbox
oTextbox
}
</script>
</head>
<body>
<input type="text" size="
<textarea rows="
<input type="button " value="Set Values" onclick="setValues()" />
</body>
</html>
這個例子中
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20350.html