JavaScript を使用して div を更新するときに問題が発生しています。
<script>
document.getElementById('advertisingBrandValues').innerHTML = "<p>The Mac is the most powerful creative tool in the world, giving users unbridled potential to make everything from bespoke family albums to industry-standard pop songs – iCreate is the key to unlocking that potential. Accessible, smart and authoritative, the iCreate brand thrives on the mantra ‘instruct, inform, inspire’, helping thousands of Mac users realise their creative ambitions.</p>";
</script>
<div id="advertisingBrandValues"></div>
次のエラーが発生し続けます。
終了していない文字列リテラル であり、エラーが最初の P タグにあることを示しています
innerHTML 関数に渡す HTML に対して何らかの処理を行う必要がありますか?
前もって感謝します!