我的尝试是:
-- 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 进行测试,均无效。它的正确语法是什么?
非常感谢。