在線(xiàn)可以,但是本地就不行,路徑?jīng)]有錯(cuò)誤啊,不然控制臺(tái)也會(huì)報(bào)錯(cuò)
為啥本地的不行,顯示有錯(cuò)誤?這是問(wèn)什么?
<!DOCTYPE html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>表單</title>
? ?<link rel="stylesheet" href="./css/bootstrap.min.css">
<style type="text/css">
*{padding:0;margin: 0;}
</style>
</head>
<body>
?<form role="form">
? <div>
? ? <label for="inputEmail3" class="col-sm-2 control-label">郵箱</label>
? ? <div>
? ? ? <input type="email" id="inputEmail3" placeholder="請(qǐng)輸入您的郵箱地址">
? ? </div>
? </div>
? <div>
? ? <label for="inputPassword3" class="col-sm-2 control-label">密碼</label>
? ? <div>
? ? ? <input type="password" id="inputPassword3" placeholder="請(qǐng)輸入您的郵箱密碼">
? ? </div>
? </div>
? <div>
? ? <div class="col-sm-offset-2 col-sm-10">
? ? ? <div>
? ? ? ? <label>
? ? ? ? ? <input type="checkbox"> 記住密碼
? ? ? ? </label>
? ? ? </div>
? ? </div>
? </div>
? <div>
? ? <div class="col-sm-offset-2 col-sm-10">
? ? ? <button type="submit" class="btn btn-default">進(jìn)入郵箱</button>
? ? </div>
? </div>
</form>
? ? <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script src="./js/bootstrap.min.js"></script>?
</body>
</html>
2017-09-07
知道了