こんにちは、私は JS を初めて使用します。コードについて聞きたいのですが、どうすれば正しく記述できますか?
function impScript(scriptURL){ headTitle = document.querySelector('head'); setProperty = document.createElement('script'); setProperty.setAttribute('href',scriptURL); headTitle.appendChild(setProperty); } const metaScript = ['ar.js','ar2.js'] impScript(metaScript);
コードは機能しますが、結果は 2script href="ar.js,ar2.js">
となります。これをしたい
どうすればよいですか?あなたの答えは役に立ちます、ありがとう。
配列をループしてタグを 1 つずつ作成する必要があります:
リーリー