JQ td 循環中獲取標籤的值

     {foreach name="user_list" item="list"}
                            <tr class="lzCenter-td">
                                <td class="lzCenter_td_content1">{$list['uid']}</td>
                                <td class="lzCenter_td_content2">{$list.phone}</td>
                                <td class="lzCenter_td_content3">{$list.pro_id}</td>
                                <td class="lzCenter_td_content4">{$list.id}</td>
                                <td>推送失敗</td>
                                <td>
                                    <span class="re_send">重新發送</span>
                                </td>
                            </tr>
                            {/foreach}
  $(".re_send").each(function(i){
                    $(this).click(function(){
                        let send_data = $(this).parents('tr.lzCenter-td');
                        uid = send_data.children(".lzCenter_td_content1").text();
                        phone = send_data.children(".lzCenter_td_content2").text();
                        pro_id = send_data.children(".lzCenter_td_content3").text();
                        order_id = send_data.children(".lzCenter_td_content4").text();
                        $.getJSON("{:url('product/resend')}",
                            {'uid':uid,'phone':phone,'pro_id':pro_id,order_id:order_id},
                            function (data) {
                                if (data.pass == 1)
                                {
                                    layer.msg(data.msg, {icon: 1, time: 1500, shade: 0.1}, function (index) {
                                        layer.close(index);
                                        history.go(0);
                                    });
                                } else {
                                    layer.msg(res.msg, {icon: 0, time: 1500, shade: 0.1});
                                }
                            });
                    })
                })
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章