Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用这个 javascript 来计算输入框中的字符。
我想要做的是,我只想在输入框中的字符达到 5 时才显示这个 DIV(倒计时)。
您还没有告诉我们您要显示/隐藏哪个 div,所以只需将#divToShow选择器替换为适合该 div 的选择器:
#divToShow
$(".message").keyup(function() { if($(this).val().length >= 5) { $("#divToShow").show(); } else { $("#divToShow").hide(); } });
我会使用“更改”方法,因为当文本长度小于 5 个字符时我们需要隐藏我们的 div