jquery怎么获取当前标签父标签的值

直接看代码,获取值的代码在  /移除当前商品   这段注释下面

​
$.each(data,function (index,item) {
                str += ' Iamge
' +''+item.hotel.name+'0%' +''+item.oprice+'' +'X' count+=item.oprice; id+=item.oid+"x"; }); $('.table tbody').html('').append(str); $('.count').html('').append(count+'¥'); }); } //显示付款界面 function pay() { $.post("ali/pay",{id:id,count:count},function (data) { $('body').html(data); }); } //移除当前商品 function deleteById(obj) { //触发点击事件时,获取当前点击元素的祖先元素tr中第二个td的第一个input输入的值 //parents()获取所有的祖先元素td/tr/table/div/div/body/html //parents("tr")指定tr元素 //children("td").eq(1)子节点中的第二个td //find("input:first").val()第一个input标签的值 var id = $(obj).parents("tr").children("td").eq(0).find("input:first").val(); console.log(id); } ​

 

你可能感兴趣的:(java基础,html,jquery)