js 版的var_dump

来源:互联网 发布:徒步鞋 知乎 编辑:程序博客网 时间:2024/06/11 16:55
转贴:

function var_dump(obj) {
    if(typeof obj== "object") {
       var txt = '';
       for(key in obj)  txt +=key + '=' + obj[key] + ',';
        return "Type: "+typeof(obj)+((obj.constructor) ? "/nConstructor: "+obj.constructor : "")+"/nValue: " + txt;
    } else {
       return "Type: "+typeof(obj)+"/nValue: "+obj;
   }
}

function resize_iframe(iframe){

  ibody = iframe.contentWindow.document.body;
  clipboardData.setData("text", var_dump(ibody));

}
原创粉丝点击