簡體   English   中英

Opera mini兼容性問題

[英]Opera mini Compatibility issues

我是印度的開發人員。 我們有構建站點,該站點在Opera Mini上不兼容,並且在Opera中工作正常。 我發現這是迷你相同(INFACT都是一樣的。)做工精細的網絡對於如幾個網站: https://www.freecharge.in/mobile/recharge/prepaidhttps://paytm.com/等。 .. keyup事件也可以使用,這在Mini中不可用。 請幫助我加載與Opera相同的網站,而不禁用數據保存模式


這是代碼片段

<!DOCTYPE html>
<html>
<head>
    <title>Test</title>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
    <meta name="format-detection" content="telephone=no"/>
    <meta name="msapplication-tap-highlight" content="no"/>
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="theme-color" content="#E3714D">


</head>

<body>
    <form action="h" method="POST" class="card recharge-form recharge-card" name="recharge_form">
        <div class="" style="display:block;" id="rechargeBlock">
            <div class="card-wrap">
                <div class="element-container main-input no-border">
          <label for="">Mobile Number</label>
          <div class="border">
            <span class="icon phone"></span>
            <input data-required="true" spellcheck="false" placeholder="Mobile Number" maxlength="10" type="tel" name="serviceNumber" id="serviceNumber" value="" class="">
          </div>
                    <div class="error-block"></div>
                </div>




</div></form>
</body>

</html>

Opera Mini中未加載數字鍵盤

目前,處於“極限”模式的Opera Mini不支持新的HTML5輸入類型,它們會退回到標准文本輸入中。 它在freecharge.in上為您工作,因為它以高模式靜默加載,該模式在后台使用內部Android的WebView。

我建議您花幾分鍾來了解Opera Mini的工作原理。 簡而言之:所有頁面都呈現在我們的服務器上,然后將其轉換為非常簡化的格式並發送到Opera Mini客戶端。 不支持按鍵事件和類似事件,因為這將需要在每次按鍵時連接到Opera Mini服務器。 試想一下需要多少時間和數據!

我建議看一下以下站點:

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM