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
另一种选择是使用 html 字符代码。
document.write('veena's');
document.execCommand('insertHTML', false, 'Hello this is Veena\'s message');
在它之前使用反斜杠。这将起作用。
逃避报价:
'Hello this is Veena\'s message'