$(document).ready(function(){
$(".submit").click(function(){
if($('.disrtrict')[0].selectedIndex<=0){
$("#error1").html("district field is empty");
}
if($(".block")[0].selectedIndex<=0){
$("#error2").html("block field is empty");
}
if($(".village")[0].selectedIndex<=0){
$("#error3").html("village field is empty");
}
});
});
以上是我的 jquery 脚本。我是 jquery 的新手,并尝试学习 jquery。我的问题是我在哪里使用 return false。return true 和 false 的概念是什么,如果有人有标准检查if($(".block")[0].selectedIndex<=0)
,我们可以使用吗?请提前提供帮助。谢谢。if($(".block").val()==" ")