我想知道您是否能帮助我从我的网站中删除以下 div 以供参考。
<div style="text-align: center; font-size: smaller; clear: both;">Powered by <a href="http://www.joomultra.com" target="_blank" rel="follow">JU Contact</a></div>
有什么办法可以删除这个div吗?
答案1
答案2
您可以使用 jquery 来执行此操作。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$('div').css('display', function () {
if ($(this).css('clear') == 'both')
return 'none'
});
});
</script>
<title></title>
</head>
<body>
</body>
</html>