dom代码:
<table>
<thead>
<th>1</th>
</thead>
<tbody id="table-test">
<tr>
<td>22222</td>
</tr>
</tbody>
</table>
js代码:
mui("#table-test").on("tab","tr",function(){
console.log("success");
})
绑定以后点击tr没有反应
dom代码:
<table>
<thead>
<th>1</th>
</thead>
<tbody id="table-test">
<tr>
<td>22222</td>
</tr>
</tbody>
</table>
js代码:
mui("#table-test").on("tab","tr",function(){
console.log("success");
})
绑定以后点击tr没有反应
1 个回复
real_Trump
tap