//W3C/1. Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
無標題文件
<script> <BR>function sum(){ <BR>var str =document.getElementById ("text"); <BR>var cont=str.value; <BR>var len=cont.length; <BR>document.getElementById("span").innerHTML="您目前輸入了" len "個字符"; <BR>if(len>=100){alert("您不能再寫入了,已經達到最大!"); <BR>document.getElementById("text").value=cont.substr(0 ,99); <BR>//實現100字最大限度,如果超過了,不在寫入資料! <BR>} <BR>} <BR></script>