美文网首页
JS中检测变量为string类型的方法

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

作者: 校长不读书 | 来源:发表于2016-09-03 00:39 被阅读0次
    var str = "hello world";
    function stringCheck (str) {
        if(typeof str =="string" || str.constructor == String) {
            return true;
        } else {
            return false;
        }
    }
    

    相关文章

      网友评论

          本文标题:JS中检测变量为string类型的方法

          本文链接:https://www.haomeiwen.com/subject/kdekettx.html