“Auto -Update -Copyright -Jahr HTML” Code-Antworten

Auto -Update -Copyright -Jahr HTML

<div class="copyright">
  <footer>Copyright © <span id="year"></span> , All rights reserved to X</footer>
</div>
<script>
  
  function getCurrentYear() {
    return new Date().getFullYear(); // returns the year via local timing
  };

  document.getElementById("year").innerHTML = getCurrentYear(); 
  //changing the inner html of the span with "year" id to the given year(2021)
</script>
ixWatan_

Automatisches Jahr für das Copyright HTML

<script type="text/JavaScript"> var theDate=new Date() document.write(theDate.getFullYear()) </script>
Brave Bat

Automatisches Jahr für das Copyright HTML

©<? echo date(Y);?>
Brave Bat

Ähnliche Antworten wie “Auto -Update -Copyright -Jahr HTML”

Fragen ähnlich wie “Auto -Update -Copyright -Jahr HTML”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen