首页 > 代码库 > table动态添加的tr 其click事件在IE兼容模式中不执行 jquery 1.9 的live事件 和获取 first last
table动态添加的tr 其click事件在IE兼容模式中不执行 jquery 1.9 的live事件 和获取 first last
http://www.css88.com/jqapi-1.9/first-of-type/index.html#p=//www.css88.com/jqapi-1.9/last-child-selector
---动态添加的table 的tr 给tr设定click事件 使用jquery 1.9
$(document).on("click", "#tableid tbody tr", function () {$("#tableid tbody").find("tr").removeClass("trclass");$(this).addClass("trclass");var name = $(this).attr("data");$("#txtsearch").val(name);});
function changetable() { var n = $.trim($("#txtsearch").val()); if (n != "") { $.ajax({ type: "POST", url: "../xxx/xx.aspx?action=getxx", data: { "n": n }, dataType: "json", async: false, success: function (data) { var varc = ""; $.each(data.Table, function (index, item) { varc += "<tr data=http://www.mamicode.com/‘" + item.id + "‘ ><td>" + item.id + "</td><td>" + item.name + "</td></tr>"; }); $("#tableid tbody").empty().append(varc); }, error: function () { } }); } }
--first(first-of-type) last(last-of-type)
$(document).on("click", "#file table tr td:first-of-type a", function () { var n1 = $(this).attr("data"); var n2 = $(this).attr("data2"); down(n1, n2); }); $(document).on("click", "#file table tr td:last-of-type a", function () { var n = $(this).attr("data"); delAttach(this,n); });
table动态添加的tr 其click事件在IE兼容模式中不执行 jquery 1.9 的live事件 和获取 first last
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。