本文介绍了在JavaScript中将引号括在变量字符串周围的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个JavaScript变量:

I have a JavaScript variable:

var text = "http://example.com"

文字可以是多个链接。如何在变量字符串周围放置'?

Text can be multiple links. How can I put '' around the variable string?

我希望字符串例如如下所示:

I want the strings to, for example, look like this:

"'http://example.com'"


推荐答案

var text = "\"http://example.com\""; 

无论你的文字是什么,用包裹它,你需要用 \ 来放置它们并使其逃脱。上面将导致:

Whatever your text, to wrap it with ", you need to put them and escape inner ones with \. Above will result in:

"http://example.com"

这篇关于在JavaScript中将引号括在变量字符串周围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 16:53