当用户使用jquery选中复选框时,我会获取html元素的值。我没有使用id,因为这是重复行特性我正在尝试这个第一个
eqqqjvef1#
我用这个来解决这个问题
$(document).on('click','.row_checkbox ',function(){ if (this.checked){ console.log("checked"); var unit_price = $(this).parent().parent().prev().children().val(); console.log(unit_price); } else { } });
1条答案
按热度按时间eqqqjvef1#
我用这个来解决这个问题