4

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

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

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

4

1 回答 1

2

只是猜测,但HTML5 中引入number的属性的新值确实适用于 Mobile Safari:type

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

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

于 2010-09-15T14:16:23.500 回答