如何在J查询中保留特殊字符?

时间:2016-03-22 06:59:04

标签: javascript jquery

我的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

1 个答案:

答案 0 :(得分:1)

您需要使用\

来转义引号



  var text = 'Hi there, I\'m 5\'5\" height';
  alert (text); // out put without ' " signs