如何制作动态创建的字段/元素?

时间:2013-04-18 22:46:22

标签: javascript dom

我的尝试是:

     -- new field id and name: fruit
     var cellText = document.createElement('input');
     cellText.type = 'text';
     cellText.id = 'fruit';
     cellText.name = 'fruit';
     cellText.required = true;
     cellText.message = "Please enter something for the newly created Fruit field";

使用适用于Windows和Chrome 26的Firefox 19进行测试,但均无法正常工作。 它的正确语法是什么?

非常感谢。

1 个答案:

答案 0 :(得分:1)

您可以尝试cellText.required = "required";