1.刚开始使用bootstrap框架时,控制台(Uncaught Error: Bootstrap's JavaScript requires jQuery)
使用bootstrap需要先导入jQuery:
<head>
<meta charset="utf-8" />
<title>表单</title>
<script type="text/javascript" src="js/jquery-3.4.1.js" ></script>
<script type="text/javascript" src="js/bootstrap.js" ></script>
<link rel="stylesheet" href="css/bootstrap.css" />
</head>
2.css使用div时,盒子在网页上没显示
把盒子背景颜色改为red或其它与网页不同的鲜艳颜色(而不是改变color的值)
3.有时button按钮放在form里不能触发事件
button不指定type,默认type是submit