fire bug说HierarchyRequestError:无法在层次结构中的指定点插入节点

时间:2017-07-18 14:01:11

标签: javascript html

    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:无法在层次结构中的指定点插入节点

0 个答案:

没有答案