我需要验证var是否是有效的datetime对象。 这个
alert( "dat::"+( typeof dat ))
返回"对象"。 哪种方法有效?
答案 0 :(得分:2)
我将如何做到这一点:
if ( Object.prototype.toString.call(d) === "[object Date]" ) {
// it is a date
}
else {
// not a date
}
答案 1 :(得分:1)
使用instanceof
:
dat instanceof Date