0

我尝试在黑莓操作系统 5 和 7 中使用 div,但我无法获得正确的结果。请指导我..或给出适当的设计方法。我需要可滚动的 div 而不包装它。

4

1 回答 1

0

在phonegap blackberry os5中使用div的格式

    <div data-role="header">
        <h1>Auth Demo</h1>
   </div>

    <div data-role="content">    

        <form id="loginForm">
        <div data-role="fieldcontain" class="ui-hide-label">
           <label for="username">Username:</label>
           <input type="text" name="username" id="username" value="" placeholder="Username" />
        </div>

        <div data-role="fieldcontain" class="ui-hide-label">
            <label for="password">Password:</label>
           <input type="password" name="password" id="password" value="" placeholder="Password" />
       </div>

       <input type="submit" value="Login" id="submitButton">
        </form>

    </div>
 <div data-role="footer">
        <h4>&copy; Camden Enterprises</h4>
   </div>

</div>
于 2013-08-12T10:15:27.440 回答