码迷,mamicode.com
首页 > Web开发 > 详细

html开发日记-form button

时间:2015-11-16 12:43:19      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

                    <form action="#" id="loginForm">
                        <div class="form-group">
                            <label class="control-label" for="username">用户名</label>
                            <input type="text" placeholder="example@gmail.com" title="Please enter you username" required="" value="" name="username" id="username" class="form-control">
                            <span class="help-block small">请输入您的用户名</span>
                        </div>
                        <div class="form-group">
                            <label class="control-label" for="password">密码</label>
                            <input type="password" title="Please enter your password" placeholder="******" required="" value="" name="password" id="password" class="form-control">
                            <span class="help-block small">请输入您的密码</span>
                        </div>
                        <div class="checkbox">
                            <input type="checkbox" class="i-checks" checked>
                                  记住登录
                            <p class="help-block small">(注意密码安全)</p>
                        </div>
                        <button class="btn btn-success btn-block" Login="Login">登录</button>
                        <a class="btn btn-default btn-block" href="#">注册</a>

                    </form>

<script>

$(function(){

    $("Login^=Login").on(‘click‘,function(){

        location.href="other.html";

}):

});

</script>

居然不跳转。。。神奇问题,后面发现button放在form中不管用,修改为a或者input type=“button”就好了

html开发日记-form button

标签:

原文地址:http://my.oschina.net/u/163029/blog/530759

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!