Jquery--工具方法

BtWangZhi發表於2017-08-20

1 判空

function isEmpty(str) {
    if (str == undefined || str == "" || str == null) {
        return true;
    } else {
        return false;
    }
}

2 驗證是否為數字

    var reg= new RegExp("^[0-9]*[1-9][0-9]*$");
    if(!reg.test($("#uorderno").val())){
        alert("顯示順序只能填數字");
        return;
    }

3 字串轉JSON物件

//JSON字串轉JSON物件
function strToJSON01(str){
    return eval('('+str+')');
}   
//JSON字串轉JSON物件
function strToJSON02(str){
    return JSON.parse(str);
}

4 解析資料

<pre style="word-wrap: break-word; white-space: pre-wrap;">{"result":"error","message":
var data = $.parseJSON(data.replace(/<.*?>/ig, ""));//轉換
                        alert(data.message);

5 提取HTML中的文字

/*提取HTML中的純文字*/
function removeHTMLTag(str) {
            str = str.replace(/<\/?[^>]*>/g,''); //去除HTML tag
            str = str.replace(/[ | ]*\n/g,'\n'); //去除行尾空白
            //str = str.replace(/\n[\s| | ]*\r/g,'\n'); //去除多餘空行
            str=str.replace(/&nbsp;/ig,'');//去掉&nbsp;
            str=str.replace(/\s/g,''); //將空格去掉
            return str;
}

未完待續。。。

相關文章