1.判斷內容為空的函式
function checkempty(field, fieldtitle)
return true;
}2.判斷內容是否為數字,並且為整數的函式
function checkinteger(field, fieldtitle)}}
return true;
}3.判斷內容是否為數字,並且為小數的函式
function checkreal(field, fieldtitle)
if (ch == '.')}}
}return true;
}4.判斷內容長度是否超過指定長度的函式
function checkmaxlength(field, maxlength, fieldtitle)
} return true;
}5.判斷內容長度是否小於指定長度的函式
function checkminlength(field, minlength, fieldtitle)
} return true;
} 6.判斷核取方塊中的值是否選中的函式
function checkoption(field, fieldtitle)
function checkselect(field, fieldtitle)
return true;
}7.此函式用於判斷郵箱email位址是否正確
function checkemail(field)
pos1 = field.value.indexof("@");
pos2 = field.value.indexof(".");
pos3 = field.value.lastindexof("@");
pos4 = field.value.lastindexof(".");
//check '@' and '.' is not first or last character
if ((pos1 <= 0)||(pos1 == len-1)||(pos2 <= 0)||(pos2 == len-1))
else
}return true;
}8.判斷輸入框中的值是否為指定的長度(可以判斷手機號,身份證號等)
function checkmustlength(field, mustlength, fieldtitle)
return true;
} function checkintrange(field,prompt,min,max)
return true;
} 9.選中指定列表框中的值
function selectvalue(objselect,strvalue)
}//核取方塊選擇值
function checkvalues(objselectlist,strvalue)
}else}}
}//核取方塊選擇值
function checkvalue1(objselect,strvalue)
else
}
如何判斷js檔案是否載入完成
size medium color red color size function include js file else include js jquery.js 面載入readystate的五種狀態 原文如下 0 uninitialized the send method has not ye...
js如何判斷滑鼠左鍵是否按下
js中判斷滑鼠按鍵的問題。ie 左鍵是 window.event.button 1 右鍵是 window.event.button 2 中鍵是 window.event.button 4 沒有按鍵動作window.event.button 0 firefox 左鍵是 event.button 0 右...
Js如何判斷物件是否為空
1.將json物件轉化為json字串,再判斷該字串是否為 var data var b json.stringify data alert b true 2.for in 迴圈判斷 var obj var b function return true alert b true 3.jquery的is...