复选框内容
<input type="checkbox" class="checkbox" id="checkbox" />
提交按钮内容
<button type="button" onclick="show()"></button>
在最后的提交按钮的点击事件。
function show() {
if (!document.getElementById("checkbox").checked) {
alert("请阅读并勾选按钮!");
return false;
}
}