获取表单中任何id的值单击另一个类php

时间:2017-07-03 07:53:29

标签: javascript php jquery

我希望id iin_no的值在while循环中单击client_name类,假设有50行。在jQuery上。

<td>
  <a href="#">
    <strong class="text-custom client_name">
      <u><?php echo $fetch_data['Name_as_per_pan']; ?></u>                                      
    </strong>
    </p>
  </a>
</td>

<div id="iin_no"> 
  <p><?php echo $fetch_data['iin']; ?>
</div>

3 个答案:

答案 0 :(得分:1)

试试这个:

$(".client_name").click( ()=> {
    $("#iin_no").html($(this).find("u").html());
});

答案 1 :(得分:0)

这样做

$(".client_name ul").on('click',function () {
       $("#iin_no").html($(this).html());
});

<强>修改: -

$(".client_name ul").on('click',function () {
           var id = $("#iin_no p").eq(0).html();
           alert(id);
    });

我会帮助你。

答案 2 :(得分:0)

这非常有效。请仅将iin_no的ID更改为课程。

$('strong.client_name').on('click',function(){
    var iin_no = $(this).parents('tr').find('div.iin_no').text();
});