DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> WEB網站前端 >> 關於網頁技巧 >> javascript函數庫
javascript函數庫
編輯:關於網頁技巧     

/*

-------------- 函數檢索 --------------
trim函數:                         trim() lTrim() rTrim()
校驗字符串是否為空:                 checkIsNotEmpty(str)
校驗字符串是否為整型:               checkIsInteger(str)
校驗整型最小值:                    checkIntegerMinValue(str,val)
校驗整型最大值:                    checkIntegerMaxValue(str,val)
校驗整型是否為非負數:               isNotNegativeInteger(str)
校驗字符串是否為浮點型:             checkIsDouble(str)
校驗浮點型最小值:                  checkDoubleMinValue(str,val)
校驗浮點型最大值:                  checkDoubleMaxValue(str,val)
校驗浮點型是否為非負數:             isNotNegativeDouble(str)
校驗字符串是否為日期型:             checkIsValidDate(str)
校驗兩個日期的先後:                checkDateEarlier(strStart,strEnd)
校驗字符串是否為email型:           checkEmail(str)

校驗字符串是否為中文:               checkIsChinese(str)
計算字符串的長度,一個漢字兩個字符:   realLength()
校驗字符串是否符合自定義正則表達式:   checkMask(str,pat)
得到文件的後綴名:                   getFilePostfix(oFile) 
-------------- 函數檢索 --------------
*/

/**
* added by LxcJie 2004.6.25
* 去除多余空格函數
* trim:去除兩邊空格 lTrim:去除左空格 rTrim: 去除右空格
* 用法:
*     var str = "  hello ";
*     str = str.trim();
*/
String.prototype.trim = function()
{
    return this.replace(/(^[s]*)|([s]*$)/g, "");
}
String.prototype.lTrim = function()
{
    return this.replace(/(^[s]*)/g, "");
}
String.prototype.rTrim = function()
{
    return this.replace(/([s]*$)/g, "");
}
/********************************** Empty **************************************/
/**
*校驗字符串是否為空
*返回值:
*如果不為空,定義校驗通過,返回true
12345678下一頁

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved