0

我的尝试是:

     -- 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 的 Firefox 19 和 Chrome 26 进行测试,均无效。它的正确语法是什么?

非常感谢。

4

1 回答 1

1

你可以试试cellText.required = "required";

于 2013-04-18T22:50:39.243 回答