gpt4 book ai didi

javascript - Jquery中如何保留特殊字符?

转载 作者:行者123 更新时间:2023-12-03 07:22:34 24 4
gpt4 key购买 nike

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

最佳答案

您需要使用 \ 转义引号

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

关于javascript - Jquery中如何保留特殊字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36147987/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com