在DOM插入之前用HTML包装字符串

时间:2013-04-24 01:49:31

标签: javascript jquery

我有以下if语句返回一个字符串:

var _title = ( data.complete.question ) ? 'Correct' : 'Incorrect';

在将字符串插入DOM之前,是否可以用HTML包装该字符串? 类似的东西:

// determine if correct or incorrect
var _title = ( data.complete.question ) ? 'Correct' : 'Incorrect';

// wrap the returned string in a h2 tag, store this into a variable
// when ready 
// append to the DOM 

1 个答案:

答案 0 :(得分:4)

$("<div>").text(_title).appendTo(...