2013-02-06 53 views
3

我在jqModal框中創建了登錄表單。一切運作良好,但如果我打開Android(4.0.3三星Galaxy Tab2)本機瀏覽器的形式,當我嘗試把登錄到登錄字段瀏覽器打開鍵盤與單詞預測。效果是,我只能從預測的單詞中放入第一個字母和空格。
我的問題是如何禁用與世界預測鍵盤和使用標準的瀏覽器鍵盤。以html格式預防android word預測

... 
<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 

我發現,當變化jqmOverlay位置從固定到絕對簡單的網站(wchich只包含鏈接和登錄模式對話框)輸入法工作正常,但仍出現錯誤CMS頁面上。

+0

你能提供一些解決方案的代碼嗎? – Marek

+0

新增問題。 – SZMER

回答

1

您是否嘗試過輸入屬性autocomplete=false

<input type="text" name="input_field_login" id="login" class="text" autocomplete="false" /> 
+0

它應該是'autocomplete =「off」',我不認爲它會阻止單詞建議/預測。它只會關閉自動完成。 –