innerHTML 和 appendchild 的区别

<liid="x"></li>

<script>

varx=document.getElementById("x");

x.appendChild(document.createTextNode("汉字"));

</script>

x.innerHTML="<ahref='http://baidu.com'>&amp;百度&amp;</a>";//在页面显示为链向百度的"&百度&"超链接

x.appendChild(document.createTextNode("<ahref='http://baidu.com'>&amp;百度&amp;</a>"));//在页面显示为普通字串

amp

相关推荐