我的代码是否违反了 GOOGLE adsense 条款和条件
<div id='adHolder'>
adsense code here
</div>
//on dom ready
jQuery('#adHolder').css('something','somevalue');
-我已将我的 adsensese 代码放入 div 中,并将其重新定位在 dom 上,我想知道 - 我是否违反了 google adsense 条款?条件
-我也想知道 - 正在对包含 google adsense 代码的父元素(在我的例子中为 div)执行一些 javascript/jquery 操作,这会破坏 google adsense 条款和条件。
<div id='adHolder'>
adsense code here
</div>
//on dom ready
jQuery('#adHolder').css('something','somevalue');
-i have placed my adsenese code inside a div and repositioning it on dom ready, i want to know- is iam breaking google adsense TERMS & CONDITIONS
-i also want to know- is performing some javascript/jquery actions on parent element(div in my case) containing google adsense code breaks google adsense terms and condition.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就其本身而言?不。但是,您使用的是什么 CSS?您是否试图隐藏 div,以便客户端仍然加载广告但不必看到它或其他内容?或者把它放在另一个div后面?这些都属于违规行为。
但不,修改 AdSense 块的父元素本身并没有什么问题。那是你的代码。只是不要破坏 AdSense 块的外观或使其无法让用户看到。
That in and of itself? No. However, what CSS are you using? Are you trying to make the div hidden so the client still loads the ad but doesn't have to see it or something? Or putting it behind another div? Those would be violations.
But no, there's nothing inherently wrong with modifying a parent element of an adsense block. That's your code. Just don't break how the adsense block looks or make it so the user can't see it.