我正在尝试从页面中删除一个 div(最好完全阻止它加载),但现在我决定在页面加载后将其删除。
我在 jsfiddle 上尝试了这些代码行,它可以工作。并且 '#content_gallery' div 被删除。
<script type='text/javascript'>
$(document).ready(function(){$('#content_gallery').remove();});
</script>
但是当我将它应用到我的测试网站的头部时。它不会删除指定 id 的 div。我还尝试使用其他 id 标签删除其他 div
测试站点:http ://stage.bravo-company.info/luchatest/category/gallery/
我也试过:
$(document).ready(function(){
$('#content').remove();
});
和
$(function(){
$('#content_gallery').remove();
});
有任何想法吗?可能是jquery冲突的情况吗?我不确定如何确认这一点。
这里是测试站点:http ://stage.bravo-company.info/luchatest/category/gallery/