JavaScript 中的插值

发布于 2024-11-19 06:21:47 字数 233 浏览 2 评论 0原文

我有这个 jQuery 代码

$("#selector").html('<a href=url>text</a>');

,其中 urltext 是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

℉絮湮 2024-11-26 06:21:47

您只需使用 + 将字符串连接在一起:

$('#selector').html('<a href='+url+'>'+text+'</a>');

You just concatenate the strings together with +:

$('#selector').html('<a href='+url+'>'+text+'</a>');
剑心龙吟 2024-11-26 06:21:47

虽然 @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.

可是我不能没有你 2024-11-26 06:21:47

对于 2015 年后登陆这里的人:使用 ES6 模板文字。这些是字符串文字,用反引号括起来,允许嵌入表达式。

$('#selector').html(`<a href='${url}'>${text}</a>`);

For anyone landing here post 2015: use ES6 template literals. These are string literals, enclosed in backticks, which allow embedded expressions.

$('#selector').html(`<a href='${url}'>${text}</a>`);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文