如果空输入,如何显示警告?
如果不是空的话就做ajax!
谢谢..现在正在运作!
谢谢大家......
感谢stackoverflow。
答案 0 :(得分:0)
因为您正在使用
$("#pic-upload").val().length == 0
它还会计入新行字符,长度大于0 所以不应该使用
$("#pic-upload").val()== ''
答案 1 :(得分:0)
修改此部分
$('#submit').click(function(){ // if click
if ($.trim($("#pic-upload").val()== ''){ // if empty input
alert('empty');
return false;
}
return true;
});