Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
でテキストノードの値を設定すると
node.nodeValue="string with &#xxxx; sort of characters"
アンパサンドはエスケープされます。これを行う簡単な方法はありますか?
Unicode文字にはJavascriptエスケープを使用する必要があります。
node.nodeValue="string with \uxxxx sort of characters"