- 对img标签值修改
1 | $('#imageId')[0].src; |
- 前端路由
1 | var regexps = [ |
- model->view
1 | art-template |
在使用jquery 对select 元素注册事件
1 | var select = document.getElementById('use_time'); |
选择input 标签属性
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 $('#table td > input:checked').each((i, j) => { ids.push(parseInt(j.getAttribute('adid'))) });
<table class="table table-striped table-hover">
<thead>
<tr>
<th class="table-checkbox">
<input id="allUser" control="复选框" type="checkbox" class="group-checkable" data-set=".checkboxes" />
</th>
<th control="序号">序号</th>
<th control="讲师">用户</th>
</tr>
</thead>
<tbody id="userTable"></tbody>
</table>
// 选择 input 上级 tbody 子元素 的input 属性
$(this).parents('thead').next().children().find('input').prop('checked' ,true);
1 | jQuery.parent(expr) //找父元素 |