1
我正在嘗試使用JavaScript動態添加文本字段。從我所知道的,我的代碼應該可以工作。如何使用javascript動態添加HTML表單元素
function change()
{
textField = document.createElement("text");
textField.id="sub"+count;
textField.name="sub"+count;
textField.value="Enter a name for another new subcategory";
textField.size="35";
textField.onchange="javascript:change()";
textField.onFocus="javascript:clearField()";
document.getElementById("addCatForm").appendChild(textField);
}
您可能希望使用「setAttribute」,以便使用field.setAttribute(「type」,「text」)'。 – 2010-06-23 16:32:20
感謝你們兩位!它現在很好用。 – Jimmy 2010-06-23 16:45:02