作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个显示数据的表格,当用户单击更新
按钮时,它将表格单元格转换为用户可以输入数据的输入字段。
当我单击编辑按钮时,它成功地将表格的 1 个单元格更改为输入字段,但我无法理解如何更改表格的其他单元格,我需要通过单击更改表格的所有单元格。
$(document).on("click", ".updateUser", function() {
$(this).closest('tr').find('td:nth-child(2)').each(function() {
var html = $(this).html();
var input = $('<input type="text" />');
input.val(html);
$(this).html(input);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>Username</th>
<th>Password</th>
<th>Role</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<tr>
<td>ID</td>
<td>Username </td>
<td>Password </td>
<td>Role </td>
<td>
<button type="button" class="updateUser btn btn-primary btn-xs" data-userId="<?php echo $id; ?>">
EDIT BUTTON
</button>
</td>
</tr>
</tbody>
</table>
我已经在 JSFiddle
上添加了示例,请指导我如何实现这一目标。
最佳答案
从选择器中删除nth-child(2)
。 nth-child(2)
仅导致第 n 个(在本例中为第二个)元素被选择并循环/由输入框替换。
https://jsfiddle.net/g7vrskpz/4/
$(document).on("click", ".updateUser", function() {
$(this).closest('tr').find('td').each(function() {
var html = $(this).html();
var input = $('<input type="text" />');
input.val(html);
$(this).html(input);
});
});
编辑:仅限前 3 个
https://jsfiddle.net/g7vrskpz/5/
$(document).on("click", ".updateUser", function() {
$(this).closest('tr').find('td:nth-child(1),td:nth-child(2),td:nth-child(3)').each(function() {
var html = $(this).html();
var input = $('<input type="text" />');
input.val(html);
$(this).html(input);
});
});
关于javascript - 如何将 2 个参数传递给 jquery Find() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35232592/
我是一名优秀的程序员,十分优秀!