JS基本語法供自己查閱
阿新 • • 發佈:2018-11-26
JS學習網址:http://www.w3school.com.cn/js/index.asp
js判斷undefined型別
if (reValue== undefined){
alert("undefined");
}
發現判斷不出來,最後查了下資料要用typeof
方法:
if (typeof(reValue) == "undefined") {
alert("undefined");
}
typeof 返回的是字串,有六種可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"
----------------------正則表示式--------------------
正則表示式中/i,/g,/ig,/gi,/m的區別和含義
/i (忽略大小寫)
/g (全文查找出現的所有匹配字元)
/m (多行查詢)
/gi(全文查詢、忽略大小寫)
/ig(全文查詢、忽略大小寫)
---------------------------------------------------------------------