如何從網站永久刪除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嗎?

您正在使用的免費版本Joomla超模板。

您需要購買付費版本才能刪除此版權文字。

來源由 JU 聯絡方式提供支持

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

相關內容