<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>戴维斯停车厂管理系统</title> <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.js"></script> <link rel="stylesheet" type="text/css" href="style/index.css"> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> <script type="text/javascript"> $("document").ready(function(){ $("btn1").click(function(){ }); }); </script> </head> <body> <div class="logintm"> </div> <div class="loginbox"> <h1 id="login-text">LOGIN</h1> <form action="index.html" method="post"> <input class="box-input" type="text" name="use" placeholder="用户名"></input> <input class="box-input" type="password" name="password"placeholder="密码"></input> <div class="checkbox"> <label> <input type="checkbox"> 记住密码 </label> </div> <button type="button" id="btn1" class="btn">登陆</button> </form> </div> </body> </html>
<div class="submit">
<label class="radio-inline">
<input type="radio" value="rember" >记住我
</label>
<label class="radio-inline">
<button class="submit" >提交</button>
</label>
<label class="checkbox-inline">
<input type="checkbox" value="option4">游戏
</label>
</div>
这个行不行
貌似也就只能这样
<div class="form-group form-inline">
<div class="checkbox">
<label>
<input type="checkbox"> 记住密码
</label>
</div>
<button type="button" id="btn1" class="btn">登陆</button>
</div>