VSCode Xamp локальный хостинг веб-сайта работает неправильно

#javascript #html #css #visual-studio-code #xampp

Вопрос:

Привет, Ivv Создал веб-сайт и мой js-скрипт, и все отлично работает на сервере vs code live, Смотрите, как это работает здесь

Затем, когда я размещаю его на xamp, он дозирует это вот другие ошибки и код

Другой взгляд на ошибку

 /*Js Code*/ function discord() {  /* Get the text field */  var copyText = document.getElementById("discordid")       /* Copy the text inside the text field */    navigator.clipboard.writeText("Skippy#3196");  copyText.value = "Skippy#3196";    /* Alert the copied text */  alert("Copied Alan's Disocrd: "   copyText.value);  }      function gmail() {  /* Get the text field */  var copyText = document.getElementById("Gmailid")        /* Copy the text inside the text field */  navigator.clipboard.writeText("bosslyter@gmail.com");  (copyText.value) = "bosslyter@gmail.com";        /* Alert the copied text */  alert("Copied Alan's Email: "   copyText.value);  }    /*html*/    lt;div class="third-header"gt;   lt;p class="Contact"gt;Contact Informationlt;/pgt;   lt;img class="Discord" src="/Photos/discord.png" onclick="discord()" id="discordid" imggt;    lt;img class="Gmail" src="/Photos/gmail.png" onclick="gmail()" id="Gmailid" imggt;