我一直在尝试让一些 jQuery 运行来替换对象的 html。但是我怎样才能在里面放一个 if 语句,就像这样。
$(this).html("<select id=\'status\' name=\'status[]\' multiple><option value=\'1\'"+if(string_contains(selected, 1)) { document.write(\' SELECTED\'); }+"></option></select>");
if 语句使它停止工作。
还有一个小问题。
为什么我不能像这样打破 .html 内部:
$(this).html("
<select id=\'status\' name=\'status[]\' multiple>
<option value=\'1\'"+if(string_contains(selected, 1)) { document.write(\' SELECTED\'); }+"></option>
</select>");