HTML DOM 输入图像 对象
输入图像对象
输入图像对象表示 HTML <input> 元素,其类型为 "image"。
访问输入图像对象
您可以使用 getElementById() 访问 <input> 元素,其类型为 "image"
var x = document.getElementById("myImage");
提示:您也可以通过搜索表单的 elements 集合来访问 <input type="image">。
创建输入图像对象
您可以使用 document.createElement() 方法创建 <input> 元素,其类型为 "image"
var x = document.createElement("INPUT");
x.setAttribute("type", "image");
输入图像对象属性
属性 | 描述 |
---|---|
alt | 设置或返回输入图像的 alt 属性的值 |
autofocus | 设置或返回输入图像在页面加载时是否应自动获得焦点 |
defaultValue | 设置或返回输入图像的默认值 |
disabled | 设置或返回输入图像是否被禁用 |
form | 返回包含输入图像的表单的引用 |
formAction | 设置或返回输入图像的 formaction 属性的值 |
formEnctype | 设置或返回输入图像的 formenctype 属性的值 |
formMethod | 设置或返回输入图像的 formmethod 属性的值 |
formNoValidate | 设置或返回提交时是否应验证表单数据 |
formTarget | 设置或返回输入图像的 formtarget 属性的值 |
height | 设置或返回输入图像的 height 属性的值 |
name | 设置或返回输入图像的 name 属性的值 |
src | 设置或返回输入图像的 src 属性的值 |
type | 返回输入图像的表单元素类型 |
value | 设置或返回输入图像的 value 属性的值 |
width | 设置或返回输入图像的 width 属性的值 |
标准属性和事件
相关页面
HTML 教程:HTML 表单
HTML 参考:HTML <input> 标签
HTML 参考:HTML <input> type 属性