document.execCommand('insertHTML', false, 'Hello this is Veena's message');
次のように二重引用符で渡す以外に、単一引用符を含むテキストを挿入するにはどうすればよいですか
document.execCommand('insertHTML', false, "Hello this is Veena's message");
document.execCommand('insertHTML', false, 'Hello this is Veena's message');
次のように二重引用符で渡す以外に、単一引用符を含むテキストを挿入するにはどうすればよいですか
document.execCommand('insertHTML', false, "Hello this is Veena's message");
同様の構文を持つ他のほぼすべての言語 (B、C、C++、C#、Java など) と'
同様に、バックスラッシュを使用してエスケープできます。
document.execCommand('insertHTML', false, 'Hello this is Veena\'s message');
\ で一重引用符をエスケープする必要があります
引用符をエスケープします。
document.execCommand('insertHTML', false, 'Hello this is Veena\'s message');
詳細: http://www.quackit.com/javascript/tutorial/javascript_escape_characters.cfm
もう 1 つのオプションは、html 文字コードを使用することです。
document.write('veena's');
document.execCommand('insertHTML', false, 'Hello this is Veena\'s message');
その前にバックスラッシュを使用します。これは機能します。
引用をエスケープ:
'Hello this is Veena\'s message'