input name 与 input type 有什么区别
<input name="button" type="button" onClick="rec()" value="点击我,弹出对话框" />
<input type="button" value=" 按钮上的文字" onclick=" 你设置的函数名 " />
input name 与 input type 有什么区别?
<input name="button" type="button" onClick="rec()" value="点击我,弹出对话框" />
<input type="button" value=" 按钮上的文字" onclick=" 你设置的函数名 " />
input name 与 input type 有什么区别?
2017-07-05
name为自定义元素名称,type为元素类型,如text,checkbox,password等。详细参考:http://www.w3school.com.cn/tags/att_input_type.asp http://www.w3school.com.cn/tags/att_input_name.asp
举报