如何检查表单“textbox,checkbox,textarea,select,file”中的所有元素是否都不为空?
答案 0 :(得分:71)
你可以看到是否有这样的空:
$(":input").each(function() {
if($(this).val() === "")
alert("Empty Fields!!");
});
You can read on the :input selector here
要获得更具体的答案,如果您只想要这些类型,请按以下方式更改选择器:
$(":text, :file, :checkbox, select, textarea").each(function() {
if($(this).val() === "")
alert("Empty Fields!!");
});