js对象查看...
时间:2010-08-11 来源:zjkqxjsxb
javascript:
typeof(document): 获取对象类型,此结果等于object
typeof(document.write):结果为function
for(i in document)alert(i): 获得对象所有属性,包括函数
for(i in this)alert(i):this应为全局对象或顶级对象
for(i in document)s=s+"\n"+document[i];显示所有属性的值
for(i in document)s=s+"\n"+typeof(document[i]);显示所有属性的类型
[以上document可换作任意对象]
vb:
typename:对象名称
vartype:对象类型
相关阅读 更多 +