3

我在 jqModal 框中制作了登录表单。一切正常,但如果我在 android(4.0.3 samsung Galaxy tab2)本机浏览器中打开该表单,当我尝试将登录名放入登录字段时,浏览器会打开带有单词预测的键盘。效果是我只能从预测的单词中输入第一个字母和空格。
我的问题是如何使用世界预测禁用键盘并使用标准浏览器键盘。

...
<a href="#" class="gotologin" title="login">Login</a>
...
<div class="jqmWindowLogin jqmID2" id="login_modal" style="display: none;">
    <div class="jqmContent">
        <div id="log_reg">
            <form action="<some action here>" method="post" id="login_form">
                <label for="login">login/email:</label>
                <input type="text" name="input_field_login" id="login" class="text" />
                <label for="pswd">password:</label>
                <input type="password" name="input_field_pass" id="pswd" class="text"/>
                <input type="submit" value="go" id="Image1"/>
            </form>
        </div>
    </div>
</div>
...

$('#login_modal').jqmShow();
$.fn.jqmShow=function(t){return this.each(function(){t=t||window.event;$.jqm.open(this._jqm,t);});};
//jqModal version 1.4

我发现当在简单站点(wchich 仅包含链接和登录模式框)上将 jqmOverlay 位置从固定更改为绝对时,输入法工作正常,但在 cms 页面上仍然出现错误。

4

1 回答 1

1

您是否尝试过autocomplete=false输入的属性?

<input type="text" name="input_field_login" id="login" class="text" autocomplete="false" />
于 2014-02-17T00:36:09.790 回答