检查值是否为空

时间:2013-05-16 13:25:53

标签: jquery

如何对此进行“检查”以检查文本字段是否为空?

Jquery的:

$("#AddGoogleMap").click(function () {      
    if($('#googleMapCity').val()==null) {
        alert("You need to fill out a city");
    } else {
     // do something
    }

5 个答案:

答案 0 :(得分:3)

首先,从字符串的开头和结尾删除空格,然后将该值与空字符串进行比较,如:

if( $.trim($('#googleMapCity').val()) === '') {
     alert("You need to fill out a city");
} else {
 // do something
}

答案 1 :(得分:1)

if($('#googleMapCity').val() === "") {
 alert("You need to fill out a city");
}

答案 2 :(得分:1)

可以这样做:

if($.trim($('#googleMapCity').val())==="")

答案 3 :(得分:1)

 $("#AddGoogleMap").click(function () {      
    if($('#googleMapCity').val()==='') {
    alert('You need to fill out a city');

     } else {
     // do something
     }

答案 4 :(得分:1)

Working Demo

$("#AddGoogleMap").click(function () {      
    if($('#googleMapCity').val() === "") {
        alert("You need to fill out a city");
     } else {
     // do something
     }
});