91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js form表單input框限制20個字符,10個漢字代碼實例

發布時間:2020-08-26 13:14:51 來源:腳本之家 閱讀:291 作者:weixin_43431702 欄目:web開發

直接粘貼到html文件便可看到效果

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
  <script>
   // 這是第一種最尋常的方法
   //定義一個函數
   function checkField(value, byteLength, attribute) {
    // value是input框的值,byteLength是需求限制的字符,attribute是input的id名
    var newvalue = value.replace(/[^\x00-\xff]/g, "**");
    var length = newvalue.length;
    //當填寫的字節數小于設置的字節數
    if (length * 1 <= byteLength * 1) {
     return;
    }
    var limitDate = newvalue.substr(0, byteLength);
    var count = 0;
    var limitvalue = "";
    for (var i = 0; i < limitDate.length; i++) {
     var flat = limitDate.substr(i, 1);
     if (flat == "*") {
      count++;
     }
    }
    var size = 0;
    var istar = newvalue.substr(byteLength * 1 - 1, 1); //校驗點是否為“×”
    //if 基點是×; 判斷在基點內有×為偶數還是奇數
    if (count % 2 == 0) {
     //當為偶數時
     size = count / 2 + (byteLength * 1 - count);
     limitvalue = value.substr(0, size);
    } else {
     //當為奇數時
     size = (count - 1) / 2 + (byteLength * 1 - count);
     limitvalue = value.substr(0, size);
    }
    alert(
     "最大輸入" +
      byteLength +
      "個字節(相當于" +
      byteLength / 2 +
      "個漢字)!"
    );
    document.getElementById(attribute).value = limitvalue;
    return;
   }
  </script>
 </head>
 <body>
  <div class="wrap">
   <form>
    <table class="list-style">
     <tr>
      <td >職業:</td>
      <td>
       <input id="profession" type="text" "checkField(this.value,20,'profession')" class="textBox length-middle" name="profession"/>
       <input id="interest" type="text" "checkField(this.value,100,'interest')" class="textBox length-middle" name="interest"/>
       <input id="address" "checkField(this.value,40,'address')" type="text" class="textBox length-middle" name="address" />
      </td>
     </tr>
    </table>

    <div >
     <button
      type="reset"
      
      "refresh()"
     >
      重置
     </button>
     <button
      type="submit"
      
      "return checkNull()"
     >
      提交
     </button>
    </div>
   </form>
  </div>
 </body>
</html>

以上所述是小編給大家介紹的js form表單input框限制20個字符,10個漢字詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沾益县| 庄浪县| 绥阳县| 凤庆县| 云梦县| 内江市| 绥化市| 肇庆市| 铜川市| 塔河县| 甘肃省| 太原市| 庆城县| 龙山县| 鸡东县| 西城区| 湘潭市| 万全县| 丹巴县| 广宁县| 西畴县| 盱眙县| 泗水县| 水城县| 伊吾县| 大兴区| 通州区| 垣曲县| 台北县| 尚志市| 微博| 芷江| 泸溪县| 高青县| 天台县| 鸡西市| 扎囊县| 大悟县| 长治县| 若尔盖县| 东明县|