// 3.文本域字数不得超过限制 获取输入框 const textarea = document.querySelector('.comm-input textarea') // 3.1中文起始量 为false let isChinese = false textarea.addEventListener('compositionstart', function () { // 3.2该事件在开始输入中文时触发 isChinese = true }) // 3.3该事件有在输入中文结束触发 textarea.addEventListener('compositionend', function () { document.querySelector('.word').innerHTML = `${this.value.length}/100` isChinese = false }) // 3.4输入英文时,触发 input事件只要有输入就会触发 但是 i是Chinese给return 了 textarea.addEventListener('input', function () { if (isChinese) return if (this.value.length <= 100) { document.querySelector('.word').innerHTML = `${this.value.length}/100` } })
标签:文字,isChinese,完善,false,textarea,function,input,输入 From: https://www.cnblogs.com/zhulongxu/p/16600058.html