JS中检测变量为string类型的方法

2016-09-03  本文已影响0人  校长不读书
var str = "hello world";
function stringCheck (str) {
    if(typeof str =="string" || str.constructor == String) {
        return true;
    } else {
        return false;
    }
}
上一篇下一篇

猜你喜欢

热点阅读