集字抽奖代码 求大神写个完整的!
发布网友
发布时间:2022-05-10 03:22
我来回答
共1个回答
热心网友
时间:2023-10-27 01:07
function Random(min, max) {
return Math.round(Math.random() * (max - min)) + min;
}
$(".cj").click(function(){
let p = Random(1,16)
if(p>8){
alert('未抽中')
return
}
$('.list' + p + ' span').text(function(a,b){
return b*1+1
})
})