用JS剩餘字數計算的代碼

來源:互聯網
上載者:User

先看看HTML代碼:

<textarea name="description" onkeyup="checkLength(this);"></textarea>
<br /><small>文字最大長度: 250. 還剩: <span id="chLeft">250</span>.</small>
可以看出onkeyup是當使用者離開鍵盤後觸發的事件,傳遞的參數是this(也就是當前所在的文檔地區)

然後結合JS代碼看一下:

<script type="text/javascript">
function checkLength(which) {
var maxChars = 250;
if (which.value.length > maxChars)
which.value = which.value.substring(0,maxChars);
var curr = maxChars - which.value.length;
document.getElementById("chLeft").innerHTML = curr.toString();
}
</script>
函數中首先給maxChars變數指定了值(輸入區內最多可用的字元數,注意,該變數是個可用於計算的數值)

然後從參數中得到在textarea中已輸入的字元長度,並與前面指定的最大長度做比較。
當輸入的字元長度超過範圍,則使用substring來強制限制其長度(0,maxChars)的意思就是可輸入範圍是0個字元到maxChars(變數)個字元。

var curr = maxChars - which.value.length;的作用是算出還可用多少個字元,將數值儲存在curr中。

最後通過getElementById定位到id為chLeft的對象(在該HTML中為span),並將curr裡的值通過toString方法把數值變為字串,反饋到span標籤內。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.