我正在尝试在我的博客模板中插入 adsense 广告(与位置无关),但到目前为止我还做不到。我试图在任何地方插入 adsense 代码,但网站上没有出现任何内容。为什么?我尝试使用 z-index 90000000 制作一个 div,但我的广告仍然没有显示。
$(document).ready(function() {
var addfbbox = function() {
$("#search").before("<span style='height: 62px; padding: 0; margin 0; position: absolute; top: 0px; right: 224px;'>........</span>"); };
var checkSearchBar = function() {
if ($('#search').length > 0) {
addfbbox();
} else {
setTimeout(checkSearchBar, 100);
}
};
checkSearchBar();
});