以下CSS在我的Windows手机中运行良好,但是我的Pre不会默认为数字输入。

input.numeric {
 -wap-input-format:"*n";
}


如何使Pre(可能还有其他较新的移动浏览器)默认为数字输入?

最佳答案

只是一个猜测,但是HTML5中引入的number属性的新type值确实可以在Mobile Safari上使用:

<input type="number" min="0" max="10" step="2" value="6" />


参考:http://diveintohtml5.ep.io/forms.html#type-number

关于css - 如何使Palm的WebOS浏览器默认为数字输入?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3718373/

10-13 04:00