javascript顯示對象所有屬性與方法

/** *顯示對象所有屬性 */ function showAttr(obj){ var str=''; for(var tmp in obj){ str=str+tmp+","; } alert(str); } //可用於顯示window所有方法及屬性 showAttr(window); showAttr(document); showAttr(treeNode); 當然也可用於javascri
相關文章
相關標籤/搜索