所属分类: 网页特效-其它&杂项 2023-08-28 09:31:44
$(document).ready(function() { $("#toCount").on("input", function() { $("#characters").text(this.value.replace(/ /g,'').length); $("#words").text(this.value.trim().split(" ").filter((item) => item).length); }); });