2016-03-22 83 views
0

我的jquery字符串有如下特殊字符。如何在J查詢中保留特殊字符?

$(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

FYI此無關的jQuery - 這是一個「問題」你必須在香草JS也是這樣解釋的。 – h2ooooooo

回答

1

你需要使用逃脫引號\

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

+0

是否有任何特殊的功能來處理大量的文本。我的意思是來自數據庫的文本。 –