我是node.js的新手。我创建了一个小例子,现在我想根据复选框条件删除多行。我有一个复选框表作为最后一列。我想在点击按钮时删除选中的复选框行。
Jade代码
var timeoutID = scope.setTimeout(function[, delay, param1, param2, ...]);
后端代码
<section class="get">
<h3>Get Data</h3>
<a href="/get-data">LOAD DATA</a>
<div>
<table>
{{# each items }}
<article class="item">
<tr>
<td>{{ this.title }}</td>
<td>{{ this.content }}</td>
<td>{{ this.author }}</td>
<td>{{ this._id }}</td>
<form action="/check" method="post">
<td><input type="checkbox" id="chk" name="chk" ></td>
</article>
</tr>
{{/each}}
<button>check</button>
</form>
</table>
</td>
</section>