• 限制文本域中字符输入个数


    <script type="text/javascript">
        $(function(){
            jQuery.fn.maxLength=function(max){
                return this.each(function(){
                    var type=this.tagName.toLowerCase();
                    var inputType=this.type?

    this.type.toLowerCase:null; if(type=='input'&&inputType=="text"||inputType=="password"){ this.maxLength=max; }else if (type=="textarea") { this.onkeypress=function(e){ var obj=e||event; var keyCode=obj.keyCode; this.onkeyup=function(){ if (this.value.length>max) { this.value=this.value.substring(0,max); } } } } }) }; $("#btn").click(function(){ var vMaxLen=$("input#txt").val(); var iMaxLen=parseInt(vMaxLen); $("#txtarea").maxLength(iMaxLen); $("#log").html($("#log").html()+"<p>"+"最大字符个数设定为:"+vMaxLen+"个"+"</p>"); }); }); </script> </head> <body> <p> <b>最大输入字符个数</b> <input type="text" id="txt" style=" 32px;" value="10"/> </p> <p> <input type="button" id="btn" value="限制文本域中字符的个数"/> </p> <div> <textarea rows="" cols="" id="txtarea" name="maxLenTextarrea"></textarea> </div> <div id="log"> <p>日志记录:</p> </div>

  • 相关阅读:
    hadoop使用FAQ
    kerberos在rehl6和7不兼容问题
    zookeeper使用场景
    临时记录
    SecureCRT远程工具
    jdk 环境安装
    等效
    lnmp安装及nagios
    svn的安装使用
    用户在乎的事
  • 原文地址:https://www.cnblogs.com/llguanli/p/8721443.html
Copyright © 2020-2023  润新知