我有以下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
答案 0 :(得分:4)
$("<div>").text(_title).appendTo(...