希望在网站上的输入文本框旁边有一个单词计数器
当用户单击或修改文本时,它可以显示计数,但我想在页面完成加载后立即加载。
$(document).ready(function() {
$("#product_name").change(displayText).keyup(displayText);
function displayText(){
$("em#counter").text($(this).val().length +' chars');
}
});
所以我尝试了下面的代码,但无法让它工作,也不知道为什么。
$(document).ready(function() {
if($("#product_name").length){
displayText();
}
$("#product_name").change(displayText).keyup(displayText);
function displayText(){
$("em#counter").text($(this).val().length +' chars');
}
});
非常感谢。