mjc 发表于 2007-4-27 10:13:30

***按钮特效***输入对话框限制

把下列代码加到网页的<body></body>标签之间 从google下载我的照片管理软件
--------------------------------------------------------------------------------

<!--one step to installing this script-->

<!--1)simply copy everything below, and insert into body section of page-->

<!--add other form elements into form as desired-->

<script>

<!--

/*

visit http://java-scripts.net or http://wsabstract.com

for this script and more

*/


function checkchars(cur){

//change max length to determine below

var maxlength=50

if (cur.chars.value.length>maxlength){

alert("please restrain your input to 50 or less characters!")

return false

}

}

//-->

</script>

<form onsubmit="return checkchars(this)">

<strong>in 50 chars or less, please type a short description of yourself:</strong><br><textarea rows="5" cols="38" name="chars">

      










--------------------------------------

拥有三人行论坛管理系列软件,一个人就可以管理一个论坛的更新维护。还能使您的论坛有千人在线的真实火暴效果,让您不在为论坛因没有人气而留不住会员而烦恼,使您的论坛早日成为一流的论坛。详情请登陆网站:http://www.cnsrx.cn 三人行论坛管理软件,站长必备的专业好工具。(您使用的是免费版本,购买收费版本后,将不带广告。业务QQ:247216 44985227)
页: [1]
查看完整版本: ***按钮特效***输入对话框限制