我的尝试是:
-- 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进行测试,但均无法正常工作。 它的正确语法是什么?
非常感谢。
答案 0 :(得分:1)
您可以尝试cellText.required = "required";