用到了 select2 组件来多选收件人,用搜狗浏览器(6.2版高速模式)在执行到如下这句时报错(Uncaught InvalidStateError: Failed to read the 'selectionDirection' property from 'HTMLInputElement': The input element's type ('hidden') does not support selection.),6.3版高速和兼容模式都没问题. var recipients =
定义 传输关于客户/服务器交互的状态信息. Transmits state information about client/server interaction. 注释 这种输入类型用户无法控制,但是却在提交表单时发送 value 属性的值. 此元素在 Internet Explorer 3.0 及以上版本的 HTML 和脚本中可用. 此元素不显示. 但是却在提交表单时发送 value 属性的值.input. 此元素不需要关闭标签. This input type presents no co
Ordinarily, overflow: hidden; on the body tag is sufficient to prevent scrolling a web page, if for instance you're creating a drawer to hold content that will scroll separately. However, this doesn't work in iOS6. The best I've come up with so far i
var ddd = new Date(); var day =ddd.getDate(); if(ddd.getMonth()<10){ var month = "0"+(ddd.getMonth()+1); } if(ddd.getDate()<10){ day = "0"+ddd.getDate(); } var datew = ddd.getFullYear()+"-"+month+"-"+day; var