当我在我的键盘上单击输入时,我有这样的代码来显示模式窗口:
$(".search-input").keypress(function(e) {
if(e.which == 13) {
$('#screen').css({ opacity: 0.5, 'width':$(document).width(),'height':$(document).height()});
$('#screen').show();
$('#loading_modal').show();
}
});
但我需要自定义它,如果输入的类 .search-input 值小于 3,我没有显示任何模态窗口...
我这样尝试:
$(".search-input").keypress(function(e) {
if(e.which == 13) {
if($(".search-input").value.length > 2) {
$('#screen').css({ opacity: 0.5, 'width':$(document).width(),'height':$(document).height()});
$('#screen').show();
$('#loading_modal').show();
}
}
});
但由于某些原因它不起作用(如何解决我的问题?