记录JS小练习
倒计时
- 页面一
<style>
*{border: 0;padding: 0;}
.box{width: 200px;height: 300px;background-color: #f5f5f5;padding: 10px;}
.box div{margin-bottom: 10px;}
.box div:nth-child(6) button{margin-right: 40px;}
</style>
<body>
<div class="box">
<div>商品:篮球</div>
<div>原价:999</div>
<div>现价:199</div>
<div>颜色:花牛色</div>
<div>
<button>取消</button>
<button>支付</button>
</div>
</div>
<script>
document.getElementsByTagName('button')[1].onclick = function(){
// console.log(1);
let ser = window.confirm('你确定要支付吗?');//这里是一个布尔值
if(ser){
location.href = "./cuss.html"
}
}
- 页面二