3 回答
TA贡献1841条经验 获得超3个赞
您可以使用typeof运算符:
var booleanValue = true;
var numericalValue = 354;
var stringValue = "This is a String";
var stringObject = new String( "This is a String Object" );
alert(typeof booleanValue) // displays "boolean"
alert(typeof numericalValue) // displays "number"
alert(typeof stringValue) // displays "string"
alert(typeof stringObject) // displays "object"
此网页中的示例。(尽管示例已稍作修改)。
在使用创建的字符串的情况下,这将无法正常工作new String(),但很少使用,建议在[1] [2]中使用。如果您愿意,请参阅其他答案以了解如何处理这些问题。
Google JavaScript样式指南说永远不要使用原始对象包装器。
Douglas Crockford 建议不推荐使用原始对象包装器。
TA贡献1111条经验 获得超0个赞
这对我有效:
if (typeof myVar === 'string' || myVar instanceof String)
// it's a string
else
// it's something else
添加回答
举报