jQuery移动表单卡在加载上

时间:2014-03-03 12:43:00

标签: jquery jquery-mobile

我试图在jQuery手机上创建一个简单的表单,我不知道为什么它会卡在它所加载的气泡上。

这是表单代码

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>X</title>

    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.css" />
    <script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.js"></script>
    <!--<script src="min_set.js"></script>-->
</head>


<body>
<div data-role="page">
    <div data-role="header" data-theme="c">
        <h1>Sign up</h1>
    </div>

    <div data-role="content">
        <form data-ajax="false" action="register.php" id="signup_form" method="post" >
            <input type="text" name="name" id="basic"   placeholder="Username" />


            <div data-role="fieldcontain" class="ui-hide-label">
                <fieldset data-role="controlgroup">
                   <legend>Agree to the terms:</legend>
                   <input type="checkbox" name="checkbox-agree" id="checkbox-agree" class="custom" />
                </fieldset>
                   <label for="checkbox-agree">I agree</label>

                 <button type="submit" id="submit" theme="c">Submit</button>

            </div>

        </form>

    </div>

<div data-role="footer" data-theme="c">
<h3>X</h3>
</div>
</div>
</body>
</html>

它刚刚停留在加载气泡而没有移动到register.php页面,我也做了data-ajax="false"但似乎是相同的结果。

0 个答案:

没有答案