我的jquery
字符串具有如下特殊字符。
$(window).load(function() {
var text = 'Hi there, I'm 5'5" height';
alert (text); // out put without ' " signs
});

我希望打印相同,因为它是输出。怎么做?在PHP
中,它由htmlspecialchars
函数执行。
所需的输出是
Hi there, I'm 5'5" height
答案 0 :(得分:1)
您需要使用\
var text = 'Hi there, I\'m 5\'5\" height';
alert (text); // out put without ' " signs