标签:style color ar java sp on html ad bs
appendChild只能直接增加html元素标签,不能直接添加字符串元素。增加字符串必须配合document.createTextNode
实例:
td.appendChild(a);
td.appendChild(document.createTextNode(‘Paid: (‘ + method.toUpperCase() + ‘)’));
appendChild 添加的是容器,
document.createTextNode 添加的是文本
javascript appedChild()和document.createTextNode
标签:style color ar java sp on html ad bs
原文地址:http://my.oschina.net/guomingliang/blog/334836