JavaScript 中的插值
我有这个 jQuery 代码
$("#selector").html('<a href=url>text</a>');
,其中 url
和 text
是 JavaScript 变量。我将如何评估它们在引号内?
I have this jQuery code
$("#selector").html('<a href=url>text</a>');
where url
and text
are JavaScript variables. How would I evaluate them inside quotes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您只需使用
+
将字符串连接在一起:You just concatenate the strings together with
+
:虽然 @kingjiv 的答案绝对正确,但如果您要使用 jQuery 进行大量模板化,那么可能值得查看 tmpl* 插件可帮助保持事物井井有条。
*注意:该插件从未通过测试版,并且不再维护,上面的链接仅用于存档目的。
While @kingjiv's answer is absolutely right, if you'll be doing a lot of templating with jQuery it might be worth checking out the tmpl* plugin to help keep things organized.
*note: This plugin never made it past beta, and is no longer being maintained, the link above is for archival purposes only.
对于 2015 年后登陆这里的人:使用 ES6 模板文字。这些是字符串文字,用反引号括起来,允许嵌入表达式。
For anyone landing here post 2015: use ES6 template literals. These are string literals, enclosed in backticks, which allow embedded expressions.