信网广告临时发布JS代码
广告结构和js
手机版广告dom结构 H-1
<base href="https://m.qdxin.cn">
<link rel="stylesheet" href="/css/touch20230524.css?t=66535">
<div class="magin10" id="h-1-lin" style="display: none;">
<div class="pubm320">
<a href="http://house.qdxin.cn/loupan/2023/16528.html">
<p><img src="//statics.qdxin.cn/uploadfile/gpic/1689667884.jpeg"></p>
</a>
</div>
</div>
js控制日期
<script>
var startDate = '2023/07/19 00:00:00';
var entDate = '2023/07/25 23:59:59';
var nowTime = new Date().getTime();
var startTime = new Date(startDate).getTime();
var endTime = new Date(entDate).getTime();
// console.log(nowTime,startTime,endTime)
var pubEl = document.getElementById('h-1-lin')
if(nowTime <= endTime && nowTime >= startTime) {
pubEl.style.display = 'block';
}
</script>