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