javascript代码与js文件链接无法正常工作

时间:2017-03-25 12:29:13

标签: javascript jquery

我对adblock和我的js文件存在小问题

首先,所有这些都是我的代码,当adblock在

时无效
function startChecking() {
    secondsleft -= 1e3, document.querySelector(".load_vid").innerHTML = "Please Wait.. " + Math.abs(secondsleft / 1e3) + " Seconds", 0 == secondsleft && (clearInterval(interval), $(".reloadframe").show() + $(".share").show(), document.querySelector(".load_vid").style.display = "none"/*, document.querySelector(".frame_src").style.display = "", document.querySelector(".frame_src").src = document.querySelector(".frame_src").getAttribute("data-src"), $("#btn_play_s").hide()*/,$("#btn_play_s").show())
}

function startschedule() {
    document.querySelector(".frame_src").src = "about:blank", clearInterval(interval), secondsleft = threshold, document.querySelector(".load_vid").innerHTML = "Please Wait.. " + Math.abs(secondsleft / 1e3) + " Seconds", interval = setInterval(function() {
        startChecking()
    }, 1e3)
}

function resetTimer() {
    startschedule()
}
var timeout, interval, threshold = 1e4,
    secondsleft = threshold;
window.onload = function() {
  $("#btn_play_s").show().click()
};

上面的代码我在main.js文件中没有在页面

并且在页面中我有像这样链接的广告

<script data-cfasync="false" type="text/javascript" src="http://www.tgo-tv.net/56jspop55/js-z4z7vwhe390remdsof3ai6vtbaw07y4klq5dr23rnns1fzewcz.js"></script>

这是广告文件,当然adblock阻止它,但问题是我不知道为什么adblock阻止此广告文件和我的代码无法正常工作

并且当我搜索到我遇到的问题是在这部分代码我认为

var timeout, interval, threshold = 1e4,
    secondsleft = threshold;
window.onload = function() {
  $("#btn_play_s").show().click()
};

但我不知道如何解决它。

主要问题是我的网页是关于加载视频并显示它但在我的网页上使用该广告文件导致“未加载视频”。

这是现场版http://www.tgo-tv.net/clickload/

0 个答案:

没有答案