这俩有什么区别呢?(1)<h1 id="con">helloword</h1>mychar=document.getElementById("con");下面这两个document.write(mychar);document.write(mychar.innerHTML);
1 回答
已采纳
李晓健
TA贡献1036条经验 获得超461个赞
这两个都是将内容写到页面的body中;
mychar=document.getElementById("con"); document.write(mychar); //这个是将整个标签写入body 就是<h1 id="con">helloword</h1> document.write(mychar.innerHTML); //这个是将标签中的内容写入body 就是helloword
其实这两种写法在页面上看起来是没什么区别的,就像
<body> <h1 id="con">helloword</h1> </body>
<body> helloword </body>
添加回答
举报
0/150
提交
取消