Jump to content
php.lv forumi
  • 0

delegate...


reiniger

Question

Sveiki

Nepieciešams padoms.

ievadot clases w3 datus w1 + w3 attēlotos rez

<table id="_table">

   <tr>
   	<td><input class="w1" /></td>
   	<td><input class="w3" /></td>
   	<td><input class="rez" /></td>
</tr>

   <tr>
   	<td><input class="w1" /></td>
   	<td><input class="w3" /></td>
   	<td><input class="rez" /></td>
</tr>
</table>

 

$('#_table').delegate('.w3','keyup',function(){
var w_3 = $(this).val();
var w_1 = $(this).find(".w1").val();

alert('test: ' + w_3 + ' # ' + w_1);
});

Kā var iegūt clases w1 val()? Lai varētu saskaitīt un attēlot class rez vietā!

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

ideja tād, ka selektējam .w1 klasi, par kontekstu norādot .w3 parenta parentu, kurš ir tr tags.

$('.w1',$(this).parent().parent()).val();

 

vai, ja find ir saprotamamāks, tad

 

$(this).parent().parent().find('.w1').val()

 

 

briedi, closest meklē tuvāko parentu.

Edited by codez
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...