JS实现文字倒计数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS实现文字倒计数相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>My Practice</title> <script src="jquery-3.2.1.js"></script> </head> <body> <div> <textarea onkeyup="javascript:checkWord(this);" onmousedown="" ></textarea>(<span id="ResidueCount">10</span>) </div> <span>test</span> <script type="text/javascript"> var str = ""; var maxLength = 10; function checkWord(c) { str = c.value; //console.log(str + " " + str.length); var len = maxLength - str.length; if (len >= 0) { $("#ResidueCount").text(len); } else { c.value = str.substring(0, maxLength); } } </script> </body> </html>
参考:http://www.studyofnet.com/news/529.html
以上是关于JS实现文字倒计数的主要内容,如果未能解决你的问题,请参考以下文章
JS实现自动生成li,产生每10个换行,颜色变换,正V,倒V效果图