document.getElementById('customerName').onchange =function(){
if( document.getElementById('customerName').value == 0){
document.getElementById('customer').removeAttribute('readonly','readonly');
var textArea = document.createElement('textarea');
textArea.setAttribute('name','address');
textArea.setAttribute('class','form-control');
var tr = document.createElement('tr');
var td = document.createElement('td');
var text = document.createTextNode('العنوان');
td.appendChild(text);
tr.appendChild(td);
td = document.createElement('td');
td.appendChild(textArea);
tr.appendChild(tr);
document.getElementById('customeBody').appendChild(tr);
}
尝试附加2(td)s仅包含文本而另一个包含文本区域但出现此错误HierarchyRequestError:无法在层次结构中的指定点插入节点