jquery 点击编辑按钮 当前行tr 中的td 全部 变为input 15

 我来答
yingjianglinx
2013-01-05 · 超过33用户采纳过TA的回答
知道答主
回答量:73
采纳率:0%
帮助的人:64.8万
展开全部
对的 这样做完全没有任何意义,但是我知道你的意思,就是能让表格td变成可编辑的input,
可以这样 在td里面在嵌套一个span标签用于存放数据,当单击span标签的时候 在替换成input标签就可以了
森壳科技
推荐于2017-05-20 · 超过23用户采纳过TA的回答
知道答主
回答量:53
采纳率:0%
帮助的人:42.8万
展开全部
js代码:
$(".edit").click(function(){
var t_this = $(this);
var list=$(t_this).parent().parent().find("td:lt(2)");
$.each(list,function(i,obj){
$(obj).html("<input type='text' value='"+$(obj).text()+"'/>");
});

});

html代码:
<table>
<tr>
<td>1</td>
<td>2</td>
<td><input type="button" class="edit" value="编辑"/></td>
</tr>
</table>
大致上的代码就是这样了,希望对你有所帮助。
追问
  • 大致上的代码就是这样了??

追答
是啊,你可以按照你自己的需求进行修改啊。以下代码仅供参考:
html代码:

1
2

js代码:

$(document).ready(function () {
$(".edit").live("click", function () {
var t_this = $(this);
var list = $(t_this).parent().parent().find("td:lt(2)");
var html = encodeURIComponent($(t_this).parent().parent().html());
$.each(list, function (i, obj) {
$(obj).html("");
});
$(t_this).parent().html("");
});
$(".save").live("click", function () {
var t_this = $(this);
var list = $(t_this).parent().parent().find("td :input[type='text']");
$.each(list, function (i, obj) {
$(obj).parent().html($(obj).val());
});
$(t_this).parent().html("");
});
$(".cancel").live("click", function () {
$(this).parent().parent().html(decodeURIComponent($(this).attr("html")));
});
});
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友46b235f5b2
2013-01-05 · TA获得超过1397个赞
知道小有建树答主
回答量:676
采纳率:100%
帮助的人:622万
展开全部
$(function(){
$('#save').hide();
$('#edit').click(function(){
$(this).closest('td').siblings().html(function(i,html){
return '<input type="text" value='+html+' />';
});
$(this).hide();
$('#save').show();
})
})

<table id="tab">
<tr><td>td1</td><td>td2</td><td><button id="edit">edit</button><button id="save">save</button></td></tr>
</table>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
molaifeng
2013-01-05 · TA获得超过5273个赞
知道大有可为答主
回答量:1629
采纳率:50%
帮助的人:1764万
展开全部
这样有意义嘛,tr中td没了,也就是表格的结构被破坏了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式