开发者社区 问答 正文

JavaScript 怎么看解析后的源代码?

比如我写了个脚本:

<script>
var a='<div style="background-color:red;height:100px;width:100px"></div>';
document.write(a);
</script>

要是在网页看源代码的话,也是:

<script>
var a='<div style="background-color:red;height:100px;width:100px"></div>';
document.write(a);
</script>

怎么才能看到:

<div style="background-color:red;height:100px;width:100px"></div>

就是JavaScript运算完后的html代码?

展开
收起
杨冬芳 2016-06-22 12:09:31 2293 分享 版权
1 条回答
写回答
取消 提交回答
  • IT从业

    网页上右键“审元素”(chrome)/"查看元素"(firefox)

    2019-07-17 19:45:24
    赞同 展开评论