IOS Safari

时间:2015-10-12 12:51:14

标签: javascript ios css html5 safari

我有一个用于引脚输入的四个数字输入接口。在填充输入时,选择下一个以提供焦点。

HTML:

    <div class="pinInputs">
    <div class="pinInputsWrapper">
        <div class="small-2 large-2 columns">
            <input name="pinInput1" 
                   id="pinInput1" 
                   tabindex="1" 
                   maxlength="1" 
                   pattern="[0-9]" 
                   autofocus="true" 
                   data-autofocus="true" 
                   type="tel" />
        </div>
        <div class="small-2 large-2 columns">
            <input name="pinInput2" 
                   id="pinInput2" 
                   tabindex="2" 
                   maxlength="1" 
                   pattern="[0-9]"
                   type="tel" />
        </div>
        <div class="small-2 large-2 columns">
            <input name="pinInput3" 
                   id="pinInput3" 
                   tabindex="3" 
                   maxlength="1" 
                   pattern="[0-9]" 
                   type="tel" />
        </div>
        <div class="small-2 large-2 columns">
            <input name="pinInput4" 
                   id="pinInput4" 
                   tabindex="4" 
                   maxlength="1" 
                   pattern="[0-9]" 
                   type="tel" />
        </div>
    </div>
</div>

CSS:

    .pinInputs {
    max-width: 16.4em;
    margin: 0 auto;
}
.pinInputsWrapper {
    height: 3.2em;
}
.columns {
    margin: 0 2.5%;
    float:left;
    width:20%;
    height:100%;
}

input {
    font-size: 1.5em;
    color: #024734;
    text-align: center;
    margin-bottom: 0;
    height: 100%;
    padding: 0;
    width: 100%;
}

input:not(:focus){
    -webkit-text-security: disc;
    -mox-text-security: disc;
    -moz-text-security: disc;
    -o-text-security: disc;
    text-security: disc;
    color: #31953e;
}

使用Javascript:

    $("input").bind("input change", function(ev) {
        var index = parseInt(ev.srcElement.id.slice(-1));
        if (index < 4 && ev.srcElement.value) {
            $('#pinInput' + (index+1)).select();
        }
    });

我已经在这个jsfiddle中创建了它: https://jsfiddle.net/ek7rhgsj/8/

重现问题: 使用单个数字数字字符填充输入,然后向后移动删除内容。当所有输入都为空时重新填充。现在将光盘推到输入的底部,而不是垂直对齐。这只能在手机游戏中重现。我可以在运行ios 8.1.1,ios 8.2和9的iphone上看到它。它可能出现在其他版本上,但这些都是我目前可用的测试设备。有没有人见过类似之前,如果有的话有解决方法吗?

任何想法都非常感激 ç

1 个答案:

答案 0 :(得分:0)

好的,我找到了解决方案。

鉴于我能够在jsfiddle中轻松地生成这个,我知道它与我使用的js框架(mithril)没什么关系,而是与浏览器特定的问题有关。由于safari运行不同的引擎到chrome我认为选择输入框以改变焦点的方式是可能的原因。我没有深入研究这个问题,但使用element.focus()方法代替select解决了我的问题并且没有其他跨浏览器问题。如果有人有更深入的解释,我很乐意听到它:)

谢谢, ç