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