1

我遇到了一些我认为在 JavaScript 中很奇怪的东西。我正在构建一个表单,其想法是提供按需添加表行和字段的能力。正如你可以想象的那样,我开始尝试使用createElement,appendChild等。

为什么当我尝试从输入字段传递值时,它不能直接附加并输出到div标签?但是,当首先传递检索到的值createTextNode然后输出它时,它可以工作。

控制台说串联 pat.appendChild(al) 不是对象

pat.appendChild(text)工作正常吗?

<script type="text/javascript">

function appendTr (){

    var pat = document.createElement("p");
    /*var formValue = document.createTextNode("This works, but why doesn\'t the other one");
    p.appendChild(formValue);*/
    var al = document.getElementById("position").value;
    var text = document.createTextNode(al);
    pat.appendChild(text);
    document.getElementById("outer").appendChild(pat);
}

</script>
<form>
    <table id="job">
        <tr>
            <td><input id="y1" name="y1" type="text"></td>
            <td><input id="y2" name="y2" type="text"></td>
            <td><input id="position" name="position" type="text"></td>
            <td><input id="org" name="org" type="text"></td>
            <td><input class="button" id="addRow" type="button" value="+" onclick="appendTr()"></td>
            </tr>
    </table>

</form>
<div id="outer">Not</div>
4

1 回答 1

0

al是一个字符串并且text是一个节点。的参数appendChild必须是一个节点。

al直接输出到 div 中,请执行以下操作:

document.getElementById("outer").textContent=al;

或者当您希望 html 代码al正常工作时:

document.getElementById("outer").innerHTML=al;
于 2016-04-16T21:51:25.873 回答