定时广告JS代码

/ 0评 / 2
<script>
function adCheck(){
  var myDate = new Date();
  var aaa=myDate.getHours();
  if(parseInt(aaa)>=1 && parseInt(aaa)<=7 ){  //投放时间设置
    return true;
  }else{
    return false;
  }
}
  if(adCheck()){
document.writeln('广告代码放这里');
  }
  </script>

发表评论

邮箱地址不会被公开。 必填项已用*标注