1

我从数据库生成一个表,看起来像这样

<table id="items">
<thead>
    <tr>
        <th>Details</th>
        <th>Goldmine ID</th>
        <th>&nbsp;</th>
    </tr>
</thead>
<tbody>
    <tr>
        <td class="evenrow">This is a test Description generated through UNIT Tests for the category description</td>
        <td class="evenrow"><input type="text" value="" id="106" class="gminput"></td>
        <td class="butCell evenrow"><button class="saveButton updateitem">Update</button></td>
    </tr>
    <tr>
        <td class="oddrow">This is a test Description generated through UNIT Tests for the category description</td>
        <td class="oddrow"><input type="text" value="" id="107" class="gminput"></td>
        <td class="butCell oddrow"><button class="saveButton updateitem">Update</button></td>
    </tr>
    <tr>
        <td class="evenrow">This is a test Description generated through UNIT Tests for the category description</td>
        <td class="evenrow"><input type="text" value="" id="108" class="gminput"></td>
        <td class="butCell oddrow"><button class="saveButton updateitem">Update</button></td>
    </tr>
</tbody>
</table>

我正在尝试获取相关行的按钮单击返回的输入框值和 id

到目前为止,我已经尝试过但失败了

$('body').on('click', '.updateitem', function(event) {
    event.preventDefault();
    $(this).parent().siblings().each(function(index) {
        alert(($(this).val()));
    });
    var par = sib.parent('td');
    par.addClass('redBorder');
});
4

3 回答 3

4

你想要的元素是

$(this).closest('tr').find('.gminput')

您可以使用

var input = $(this).closest('tr').find('.gminput');
var value = input.val();
var id = input.attr('id');
于 2012-11-02T10:56:21.780 回答
0

jQuery中没有方法forEach()..尝试.each()

$(this).parent().parent().each(function(index) {
   if(!$(this).hasClass('butCell')) {
       if($(this).find('input').length > 0) { // we have to verify if tds has text inputs or not
           alert($(this).find('input').val());
       } else {
           // if there is no text input we get the text inside td
           alert($(this).text());
       }
   }  
});
于 2012-11-02T11:00:23.893 回答
0
$('.updateitem').on('click', function(){
    $elem = $(this).parents('tr').find('.gminput');
    var id = $elem.prop('id');
    var val = $elem.val()
})

为什么有一个点击事件body,什么时候button就足够了?

于 2012-11-02T11:00:39.547 回答