清空指定td中的内容:
$("tr:eq("+i+")").children().eq(6).empty()
追加内容在指定td中
$("tr:eq("+i+")").children().eq(6).append("<div class=\"textarea\" id=\"yiwen_show{{y.id}}\" contenteditable=\"true' >\"+data.msg+"</div>")
通过JS跳转链接
//以下方式直接跳转
$("#update").click(function () {
window.location.href='/work/update/';
})
网友评论