如何让Palm的WebOS浏览器默认为数字输入?

时间:2010-09-15 14:02:55

标签: css webos palm-pre palm

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

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

如何将Pre(以及其他较新的移动浏览器?)默认为数字输入?

1 个答案:

答案 0 :(得分:2)

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

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

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