1
程序顯示的表格中有作爲默認文本的輸入。請我想知道如何將其替換爲具有ID的輸入文本框。謝謝如何在javascript中創建輸入文本框
<html>
<body>
</body>
<script>
function tableCreate(){
var body = document.body,
tbl = document.createElement('table');
tbl.style.width = '100px';
tbl.style.border = '2px solid black';
var n=5
for(var i = 0; i < n; i++){
var tr = tbl.insertRow()
var td = tr.insertCell(0);
var tf = tr.insertCell(0);
td.appendChild(document.createTextNode('input'));
tf.appendChild(document.createTextNode('input'));
td.style.border = '2px solid black';
tf.style.border = '2px solid black';
}
body.appendChild(tbl);
}
tableCreate();
</script>
</html>
非常感謝,它的工作。但是,我希望輸入元素擁有id,因此我可以提取這些值,以及如何創建一個將一次提交所有輸入框的提交按鈕。謝謝你的幫助 – chika
@chika查看更新後的帖子 – guest271314
非常感謝。我很感激 – chika