/*将选择的数据绑定到表单中*/
$(".update").click(function() {
$(".update").colorbox({ width: "350px", height: "230px", inline: true, href: "#edit_colorbox" });
var id = $(this).parents("tr").children(".hasID").text(); //编号
var name = $(this).parents("tr").children(".hasName").text(); //名称
var status = $(this).parents("tr").children(".hasStatus").text(); //状态
$("#edit_id").val(id);
$("#edit_title_name").val(name);
$("input[name='edit_status'][value='" + status + "']").attr("checked", true);
});
这得用live方法进行绑定
看了好几遍你的这个JQuery代码,没有发现什么代码有问题。。。