Was blockiert AdBlock auf meiner Website?

652
MD XF

Beim Lesen meiner Webseite habe ich festgestellt, dass AdBlock ein Element blockiert. Ich habe sicherlich keine Anzeigen. Hier ist die gesamte Quelle:

<!DOCTYPE html> <html> <head>  <title>Stack Overflow Comments</title> <link rel="shortcut icon" href="/favicon.png" />  <meta name="description" content="Handy comments to use on Stack Overflow" /> <meta name="author" content="Ryan Klingler" /> <meta name="keywords" content="Stack,Overflow,Ryan,comments" />  </head> <body style="line-height: 150%; background-color: #d3d3d3"> <h1>Handy Stack Overflow Comments</h1>  <strong>Bad code (sarcastic)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" class="field left" value="You should look into [proper C formatting](//prohackr112.tk/pcf). Or learn how to [thoroughly obfuscate your code](//prohackr112.tk/guide/coding/proper-c-obfuscation)." readonly>  <strong>Bad code (helpful)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" value="You should [properly format your code](//prohackr112.tk/pcf). Using proper formatting attracts people to your question and encourages them to help you." class="field left" readonly>  <br><strong>Missing MCVE (new user)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" value="Welcome to Stack Overflow! Please see [How to create a Minimal, Complete, and Verifiable Example](/help/mcve)." class="field left" readonly>  <strong>Missing MCVE (not-so-new user)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" class="field left" value="Please see [How to create a Minimal, Complete, and Verifiable Example](/help/mcve)." readonly>  <strong>Missing MCVE (no code provided)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" class="field left" value="Please post your code. But first, see [How to create a Minimal, Complete, and Verifiable Example](/help/mcve)." readonly>  <strong>Complete "gimme teh codez" question<strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" class="field left" value="&quot;Gimme teh codez!!1&quot; - &quot;No.&quot;" readonly>  </body> </html> 

Was macht AdBlock?

-1
Welches Element ist gesperrt? AFH vor 7 Jahren 0

1 Antwort auf die Frage

1
J C

Gehen Sie zu View-Source: http://prohackr112.tk/r/stack-overflow-comments

Unten sehen Sie

<!-- Hosting24 Analytics Code --> <script type="text/javascript" src="http://stats.hosting24.com/count.php"> </script> <!-- End Of Analytics Code --> 

Das ist, was blockiert wird: http://stats.hosting24.com/count.php

Um zu sehen, was in Google Chrome blockiert ist, drücken Sie F12und klicken Sie auf "Werbeblock".

Um zu sehen, was in Firefox gesperrt ist, klicken Sie auf das Symbol für das Werbeblock und klicken Sie auf "Sperrbare Elemente öffnen".

Der Host fügt Code in Ihre Seite ein. Verwandte Themen: http://stackoverflow.com/questions/2268868/ Yorik vor 7 Jahren 0