简体   繁体   中英

Interpolation in 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?

You just concatenate the strings together with + :

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

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.

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>`);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM