0

我有以下返回字符串的 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 
4

1 回答 1

4
$("<div>").text(_title).appendTo(...
于 2013-04-24T01:52:42.457 回答