如何在android .in phonegap>中禁用键盘的自动提示?

时间:2013-08-25 11:41:38

标签: android jquery jquery-mobile cordova

请告诉我如何在android .in phonegap>中禁用自动提示键盘?

当我输入时,我有输入字段。键盘显示自动提示。如何禁用它。?

<input name="password" id="text-12" value="" type="text" class="caseName_h" autocorrect="off" maxlength="240" spellcheck="false" autocomplete="off" >

1 个答案:

答案 0 :(得分:0)

    <input name="password" id="text-12" value="" type="text" class="caseName_h">

    var text = document.getElementById("text-12");

    text.addEventListener("input", function(e) {
        e.keyup();
        e.focus();

    }, true);