檢測廣告攔截器很容易檢查這個答案可能會有所幫助How to detect ad blocking and show a message
你可以看看這個它可能會幫助 detect-adblocker
其timing answer
實現在任何腳本之前添加此頭標:
<head>
<title></title>
<meta/>
<!--adBlocker detection code - START-->
<script src="//adblocker.fortiapp.com/ads.js"></script>
<script>
(function (i, o, g, r) {
i[o] = (typeof i[o] == typeof undefined) ? g : r
})(window, 'adblocker', true, false);
</script>
<!--adBlocker detection code - END-->
// Other scripts
</head>
然後用它:
if (adblocker) {
// the add blocker is enabled
}else{
// ad blocker is not enabled
}
不,沒有。 –
歡迎來到SO。請訪問[幫助],看看有什麼和如何問。 – mplungjan
也許你可以用ajax執行你的請求? – Gwendal