开发者

JQuery Popup - Ipad/Tablet Numeric Key Board

Is it possible to pop up Numeric Keybarod when user clicks on text box, using jQuer开发者_JAVA百科y?


If you set the input type to "tel", browsers that support it will show a numeric key board.

<input type="tel">

If you then add a check (e.g. using Modernizr) to provide a fallback solution for browser that don't support it natively, you can use a plugin like this one: http://www.jqueryfun.com/2010/06/23/numeric-keypad-to-allow-only-numbers-into-input-fields/

if ( ! Modernizr.inputtypes.tel) {
    // Custom plugin
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜