我有数据库值“活动”从 sql 查询返回 true 和 false 值。我希望复选框应该在什么时候打勾,什么时候active =true
不打勾active=false
。我在 php 中使用了 mvc 模型
我该怎么办?它是一个 php 页面。
<div class="datagrid">
<table class="table table-hover table-bordered" id="additionaltable">
<thead>
<tr>
<th class="span1">
Questions
</th>
<th class="span1">
Active
</th>
</tr>
</thead>
<tbody data-bind="foreach: items">
<tr data-id="value:id">
<td data-bind="text:question">
</td>
<td>
<input type="checkbox" data-bind="checked: active" />
</td>
</tr>
</tbody>
</table>
</div>
我还有 1 个查询……表格加载了数据……点击表格中的数据,值应该显示在文本框中……该怎么办?