创建一个文本<input></input>
元素。
调用myInput.size()
来设置文本框的长度。
第一个参数value
是可选的。它是一个字符串,用于设置输入框的默认值。默认情况下,输入框为空。
第二个参数type
也是可选的。它是一个字符串,指定输入文本的类型。参见MDN以获取完整的选项列表。默认值为'text'
。
示例
语法
createInput([value], [type])
createInput([value])
参数
value
字符串:
输入框的默认值。默认为空字符串''
。
type
字符串:
输入类型。默认为'text'
。
Returns
p5.Element: 新的p5.Element对象。
Notice any errors or typos? Please let us know. Please feel free to edit src/dom/dom.js and open a pull request!