限制textarea字数
关键词:限制textarea字数,textarea最大数量
window.onload=function() //页面运行调用函数
{
document.getElementById("id名称").onkeydown=function() //鼠标事件调用
{
if(this.value.length>10)
event.returnValue=false;
}
}
window.onload=function() //页面运行调用函数
{
document.getElementById("id名称").onkeydown=function() //鼠标事件调用
{
if(this.value.length>10)
event.returnValue=false;
}
}