电话间隙中的输入字段表单存在问题



我正在使用PhoneGap以及JQuery Mobile和HTML元素来实现我的项目。

<!DOCTYPE html> 
<html> 
<head> 
    <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
    <meta charset="utf-8">
    <meta name="viewport" content="target-densityDpi=device-dpi, width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" /> 
    <title>Meri Mrji</title> 
    <link rel="stylesheet" href="style/main.css">
    <link rel="stylesheet" href="style/jmobile.min.css" />
    <script src="jquery.js"></script>
    <script src="jquery.mobile.js"></script>
    <script type="text/javascript">
    </script>
</head>
<body>
    <div data-role="page" id="signup" >
         <div class="contentwrap">
            <section>
            <div class="sectionhead">
                    <h1><strong>Sign Up</strong></h1>
                </div>
                <form class="forms" action="http://google.com" type="POST">
                    <h1>Please enter <strong>Your Details</strong></h1>
                    <input type="text" placeholder="Full Name" />
                    <input type="email" placeholder="Email Address" />
                    <input type="tel" placeholder="Mobile Number" />
                    <input type="text" placeholder="Username" />
                    <input type="password" placeholder="Password" />
                    <p class="terms">
                    <a href="#signin" >View Terms</a>
                    <input type="button" value="Click me" class="green_btn" />
                    </p>
                </form>
            </section>
        </div>
    </div>
</body>
</html>

单击并从一页过渡到另一页以及其他所有事情似乎都可以正常工作。但是每当我单击任何文本字段来填写表单时,CSS 似乎都会失真并放大。任何其他人面临与Phone Gap相同的问题或知道其他出路。

------------编辑------------

在启动时,当应用程序启动时,视口的分辨率是一些

 width : 500 ;
 height : 794;

在输入字段中单击其

 width : 320 ;
 height : 268;

我无法使用一些

 preventdefault() method

或者如果我可以再次强行将视口改回宽度:500 和高度:794 ??

删除目标密度Dpi=device-dpi会停止缩放我的HTC Evo。有关视口的更多见解,请参阅此处。

终于在某个随机网址上得到了解决方案: http://uihacker.blogspot.in/2011/01/android-phonegap-scale-webview-to-fit.html

这是本机代码,它似乎覆盖了 WEBVIEW 中的所有内容,并为其提供了一致的视图,单击任何输入值时都没有缩放效果:)

相关内容

  • 没有找到相关文章

最新更新