JavaScript常用函式庫

2021-07-29 19:26:21 字數 1773 閱讀 2130

/**

* 檢驗是否數字

* @param id 待校驗元素id

* @returns ,true是數字,false相反

*/function chaecknum(id)else

}return

true;

}/**

* 校驗起止日期要小於結束日期

* @param begindateid 開始日期id

* @param enddateid 結束日期id

* @returns ,true開始日期小於結束日期,false相反

*/function datecompare(begindateid,enddateid)else

}return flag;

} //獲取當前日期

function getnowdate()

var day=now.getdate();

if(day<10)

return now.getfullyear() +"-"+month+"-"+day;

}//獲取上乙個月的第一天

function getstartmonth()

return now.getfullyear()+"-"+ month +"-"+date;

}//獲取上乙個月的最後一天

function getendmonth()

return now.getfullyear() +"-"+month+"-"+now.getdate();

}//判斷起末日期是否在同年同月

function checkcommonmonth(startmonthid,endmonthid)else

return flag;

}/**

* 禁止回車,禁止其他鍵同理

* @param id 待禁止元素id

*/function forbidkeydown(id)

});}/**

* 正則驗證手機號碼

* */

function checkmobile(mobile)\d$/;

var m = /^1\d$/;

if(!m.test(mobile))

return

true;

}/**

* 正則驗證email格式

* */

function checkemail(mail))+$/;

if(!em.test(mail))

return

true;

}/**

* 正則驗證身份證號碼

* */

function checkidencode(code);

var tip = "";

var pass= true;

if(!code || !/^\d(18|19|20)?\d(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d(\d|x)$/i.test(code))

else

if(!city[code.substr(0,2)])

else

var last = parity[sum % 11];

if(parity[sum % 11] != code[17])} }

return pass;

}/**

* */

function checkweixinnum(str)$/;

if(!em.test(str))

return

true;

}

常用函式庫收集

unsigned long resolv char host else host ip u long hp h addr return host ip 校驗和演算法 unsigned short checksum unsigned short buffer,int size if size cksu...

python常用函式庫 一

python第三方資料庫 資料分析函式庫 numpy 用於數值計算 import numpy ads np pandas 主要用於做資料處理 ipython 更新到1.0後,功能基本完善,其中的notebook非常強大,而且是基於web,在合作分享方面非常好 scripy 數值計算的擴充套件包 影象...

PHP函式庫程序 常用函式歸納

雖然市場上有php手冊 但是一方面太貴,另一方面太全,因此利用php5電子手冊找了些時間為自己量身定做了一本 php秘笈 就是把常用的和比較好的一些函式庫等歸納了一下,並把php正規表示式的全部詳解 mysql的詳細指令和詳細用法 php.ini的配置詳解也收錄其中。這裡歸納一些基礎函式庫和常用擴充...