2015年3月25日 星期三

jQuery : 判斷html text不可空白 (check html input tag value not null)

html

<form id="FROMTAG" name="form1" method="post">
<input type="text">

----------------------------------------------------------------

JavaScript

$("#FROMTAG").find(':input').each(function()
{
var ty = this.type;
var val = $(this).val();

if(ty=="text" && val=="")
{
alert("欄位不可空白");
return false;
}
});

沒有留言:

張貼留言