在Android和iOS上查看网站时强制数字输入

Mic*_*son 30 html5 android ios

我需要保留一个输入type="text",但会在Android和iOS设备上打开数字键盘.

这是因为输入字段仍然具有诸如的字符,£并且,在一个type="number"或多个字段内是不可能的type="tel".

我发现你可以强制使用iOS上的数字键盘pattern="\d*",但这对Android没有任何作用.

这是我到目前为止:

<input type="text" inputmode="numeric" pattern="\d*" value="£2,000,000" />
Run Code Online (Sandbox Code Playgroud)

http://jsbin.com/nelodixeza/edit?html,output

Nic*_*oso 6

编辑 (如果清除了评论),这个答案是在指定用于移动网络与移动应用程序的问题之前编写的.但是,这个答案将帮助那些在Android上使用WebView时寻找解决方案的人.

在Android上,用于显示页面的WebView可以覆盖onCreateInputConnection.使用此方法,您可以更改imeOptions,但仍限于相同的数字类型.或者,您可以创建自己的ime类型.

一个例子:

@Override
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
    InputConnection inputConnection = super.onCreateInputConnection(outAttrs);
    outAttrs.inputType = outAttrs.inputType | InputType.TYPE_NUMBER_VARIATION_NORMAL;
    return inputConnection;
}
Run Code Online (Sandbox Code Playgroud)

然而,虽然我确信上述内容将解决许多人的问题,但我认为你需要一些更复杂的东西.我的建议是,无论你使用什么键盘类型,都可以使用java来验证和格式化输入,这需要几个步骤:

设置一个javascript界面

webView.addJavascriptInterface(new ValidationInterface(), "appValidator");
Run Code Online (Sandbox Code Playgroud)

创建接口类

public class ValidationInterface {

    //This method would only tell you if a char is invalid
    @JavascriptInterface
    public boolean isValid(String text){
        int len = text.length();
        //replace everything thats NOT 0-9, $, £, comma or dot
        text = text.replaceAll("[^0-9$£,\.", "");
        //Its valid if the length didnt change (because nothing needs removing)
        return text.length() == len;
    }

    //This method would strip out invalid text as you go
    @JavascriptInterface
    public String getValid(String text){
        //replace everything thats NOT 0-9, $, £, comma or dot
        return text.replaceAll("[^0-9$£,\.", "");
    }

}
Run Code Online (Sandbox Code Playgroud)

文本更改时调用验证

function validate(value) {
    //ive not written js in a long time, you'll definitely need to tweak this
    //EITHER do this
    var valid = appValidator.isValid(value);
    if (valid) {
        //DO SOEMTHING
    } ...

    //OR try this
    var validText = appValidator.getValid(value);
    $('#theField').value(validText); //really not sure this is valid
}

//also just be aware you might need to use keyUp or somethign other than change
//if you are replacing the text as you type, using getValid method
<input id="theField" type="text" onChange="validate(this.value)" ... />
Run Code Online (Sandbox Code Playgroud)


iSk*_*ore 1

我用:

<input type="text" pattern="\d*" />
Run Code Online (Sandbox Code Playgroud)

没有其他必要的。

在 iPhone 上运行得很好,尤其是在使用新的键盘类型时。适用于默认键和 Swiftkey。

此外,这适用于所有 Android 设备。

更新:

试一试:

<input type="text" step="0.01" pattern="[0-9]*">

<input type="text" min="0" max="100" pattern="[0-9]*">

Or

<input type="text" pattern="\-?\d+(\.\d{0,})?">
Run Code Online (Sandbox Code Playgroud)