オブジェクトのhtmlを置き換えてjQueryを実行しようとしています。しかし、このように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>");