如果您访问此链接页面,您将在标语上方看到页脚上方的额外空间。我怎样才能删除它?这是放置 google adsense 代码的 PHP。
<?php cpotheme_show_taglines('post_bottom', 'tagline_bottom'); ?>
您可以使用 jQuery 删除空<p></p>
标签
$('p').each(function() {
var $this = $(this);
if($this.html().replace(/\s| /g, '').length == 0)
$this.remove();
});
或者如果你担心它占用的空间,你可以简单地使用 CSS 隐藏它
p:empty {
display: none;
}
使用 jQuery:empty
选择器<p></p>
在您的文档中查找。
$(document).ready(function(){
$('p:empty').remove();
});