如何从网站上永久删除 div?

如何从网站上永久删除 div?

我想知道您是否能帮助我从我的网站中删除以下 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

有什么办法可以删除这个div吗?

您正在使用免费版JoomlaUltra模板。

您需要购买付费版本才能删除此版权文本。

来源由 JU Contact 提供支持

答案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>

相关内容