私はただの学習者で、javascript と jquery についての手がかりがありません。adblock 検出スクリプトを広告したい。私が見つけたのは、厄介な警告メッセージを表示するこのコードです。私が望むのは、画面から飛び出すメッセージではなく、ajaxed メッセージを表示することです。
<script type="text/javascript">
function _enabled() {
alert('Hey Dude!!! You are using Adblock on this site? Please disable Adblock or Any other plugin blocking ads. Its the only way we cover the cost of the Servers and Website. Click OK to continue what you were doing');
}
function _disabled() {
alert('not detected');
}
var _abdDetectedFnc = '_enabled';
var _abdNotDetectedFnc = 'disabled';
</script>
<script type="text/javascript" src="http://www.adblockdetector.com/script.php"></script>
このコードを置き換えて、このコードに代わるものを教えてください。
{
alert('Hey Dude!!! You are using Adblock on this site? Please disable Adblock or Any other plugin blocking ads. Its the only way we cover the cost of the Servers and Website. Click OK to continue what you were doing');
}
私はjqueryまたはjquery-uiでそれを取得することについていくつかの解決策を見つけましたが、ここに何を入れてコードを置き換えるかについての知識がありません. http://m0006.gamecopyworld.com/games/gcw_notice.shtmlのコード例を試してみました。これは、フレンドリーな Adblock Detect メッセージを提供します。しかし、それはまったく機能していませんでした。この警告メッセージのみが私の Web サイトで機能しています。