Heim  >  Fragen und Antworten  >  Hauptteil

Korrekte Verwendung von JavaScript zum Schreiben mehrerer Meta-Tags

<p>Hallo, ich bin sehr neu bei JS. Ich würde gerne nach meinem Code fragen. Wie kann ich ihn richtig schreiben?</p> <pre class="brush:php;toolbar:false;">function impScript(scriptURL){ let headTitle = document.querySelector('head'); let setProperty = document.createElement('script'); setProperty.setAttribute('href',scriptURL); headTitle.appendChild(setProperty); } const metaScript = ['ar.js','ar2.js'] impScript(metaScript);</pre> <p>Der Code funktioniert, aber das Ergebnis ist 2script href="ar.js,ar2.js"></script></p> <p>Ich möchte das tun</p> <pre class="brush:php;toolbar:false;"><script href="ar.js"></script> <script href="ar2.js"></script</pre> <p>Was soll ich tun? Ihre Antwort wird hilfreich sein, danke. </p>
P粉432906880P粉432906880468 Tage vor508

Antworte allen(1)Ich werde antworten

  • P粉517814372

    P粉5178143722023-08-02 12:53:03

    你需要遍历数组并逐一创建标签:

    metaScript.forEach(s => impScript(s));

    Antwort
    0
  • StornierenAntwort