jQuery 유효성 검사 텍스트 상자 내용이 비어 있지 않음

3036 단어 jQueryjquery확인
$.fn 확장 jQuery 방법
/**
 *         
 * tips:    
 *     :$("#id").validate("    ");
 * @itmyhome
 */
$.fn.validate = function(tips){

    if($(this).val() == "" || $.trim($(this).val()).length == 0){
        alert(tips + "    !");
        throw SyntaxError(); //       ,      
    }
}

사용
<form action="">
      : <input type="text" id="name" name="name" /><input type="text" id="age" name="age" /><input type="text" id="address" name="address" />
    <input type="button" value="  " onclick="submit();" />
form>
function submit(){
    //  validate()
    $("#name").validate("  ");
    $("#age").validate("  ");
    $("#address").validate("  ");
}

작성자: itmyhome

좋은 웹페이지 즐겨찾기