为什么我通过createElement方法添加的空P元素不能通过firstChild.nodeValue改变文本内容,而用html写的空P元素可以? //动态添加空的p元素 var addtext = document.createElement('p'); addtext.id = "description"; document.getElementsByTagName('body')[0].appendChild(addtext);//改变文本内容 var description = document.getElementById('description'); var text = whichpic.getAttribute('title'); description.firstChild.nodeValue=text;
添加回答
举报
0/150
提交
取消