Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只需要在移动设备上删除一个 div - 我的网站是响应式的 - 目前我正在使用 css display:none; 但是我希望它完全从 DOM 中删除。
DIV 里面有 google adsense 代码,即使广告没有显示,它仍然“显示”在移动设备上——这会使广告的浏览量翻倍,并不必要地降低点击率。
那么如何在特定断点使用 jquery remove 删除 DIV?
要使用屏幕宽度执行此操作:
if ($(window).width() < 797) { $('#youDiv').remove(); }
将 797 更改为您想要的任何断点并添加您的 div id。