<script>
//DOM对象调用需要写在head里面
//button判断跳转
function enter() {
var color =$("#rule").css("backgroundColor");
if(color==="rgb(255, 255, 255)"){
alert("请同意相关协议")
}else{
//跳转页面
window.location.href="1.html"
}
}
</script>
<input type="button" value="登录" onclick="enter()">
input判断并跳转
最新推荐文章于 2023-10-01 20:39:00 发布