<div class="jb51code">
<pre class="brush:xhtml;">
<!DOCTYPE HTML> <Meta http-equiv="Content-Type" content="text/html; charset=gb2312">
@H_403_0@
活动倒计时
@H_403_0@页面预览
@H_403_0@脚本 js
@H_403_0@代码
秒!
标签
var button = $("a[data-id='6']");
//每秒执行一次,若按钮状态为可用,进行点击
var fuc = setInterval(function() {
//如果出现刷新验证码的按钮,则表明已抢到
if($(".refresh-btn").length > 0){
window.clearInterval(fuc);
//桌面通知,只有chrome,firefox浏览器支持桌面API
Notification.requestPermission(function(status) {
var n = new Notification('通知消息',{ body: '爱奇艺会员兑换码!' });
});
} else {
button.click();
}
},1000);//一秒一次点击
原文链接:https://www.f2er.com/js/34218.html