前:
<input type='checkbox' name='killerFeature' id='killerFeature'
<%= param('killerFeature') ? ' checked' : ''%>
/>
现在:
<select name="killerFeature" id="killerFeature" class="select">
<option value="1">Enable</option>
<option value="0">Disable</option>
</select>
如何在现在的选择中插入相同的选中(我猜现在应该被“选中”?)条件?
这是一个 perl 应用程序,使用 Mojolicious Web 框架构建。
非常感谢您的帮助!