我想根据文本框的长度显示/隐藏一个 div。我使用的是骨干结构,所以不知道在哪里放置代码..
但这是我的代码;
<input type="text" id="txtUsername" placeholder="username"><br> <input
type="text" id="txtPassword" placeholder="password">
<div id="results">
// text here
</div>
js
$('#chooseScan').addClass('hide');
if ($('txtUsername').length > 0 && $('txtPassword').length > 0) {
$('#results').removeClass('hide');
$('#results').addClass('show');
}