js创建表单控件
var btn=document.createElement("input");
表单控件类型用
btn.setAttribute("type","text")
为什么不用btn.type="text"?
因 浏览器安全限制 这样不能写