需要通过 jQuery 在字符串中发送两种引号
我通过 jQuery 发送一些 html,在这个 html 中有各种需要引用的值,在一个实例中,有一个嵌套值,所以我必须能够发送两种引号。这是一些模拟代码:
var myVar = "<tag value='foo' value2="config={'bar':null, 'foo2':true}" />";
如何确保双引号正确发送?
I'm sending some html via jQuery, and in this html are various values that need to be quoted, and in one instance, there's a nested value, so I have to be able to send both kinds of quotes. Here's some mock code:
var myVar = "<tag value='foo' value2="config={'bar':null, 'foo2':true}" />";
How can in ensure that the double quotes are sent properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以逃脱他们。
You can escape them.
您可以通过在字符串前面添加斜杠来转义字符串内的双引号。
像这样
you can escape the double quotes inside the string, by adding a slash in front of it.
like this