为什么没有显示出P标签的字段?
<script type="text/javascript">document.getElementById("p1")=document.write("JS进阶篇"); function gg(){ var message = confirm("是否要弹窗"); if(message == true){ alert("关注JS高级篇"); } }</script></head><body> <p id="p1"></p> <button type="button" onclick="gg()">点我弹窗显示</button>
这段代码这么写为什么不显示“JS进阶篇”??