我遇到了一些我认为在 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>