标签: css webos palm-pre palm
以下CSS在我的Windows手机中运行良好,但我的Pre不会默认为数字输入。
input.numeric { -wap-input-format:"*n"; }
如何将Pre(以及其他较新的移动浏览器?)默认为数字输入?
答案 0 :(得分:2)
只是一个猜测,但HTML5中引入的number属性的新type值确实适用于Mobile Safari:
number
type
<input type="number" min="0" max="10" step="2" value="6" />
参考:http://diveintohtml5.ep.io/forms.html#type-number