答案 0 :(得分:1)
你为什么不做parent().find()
$(document).ready(function(){
$('.this_payment').live('change keyup',function () {
$(this).parent().find('.trans-selected').prop("checked", ($(this).val() > 0));
});
});
答案 1 :(得分:0)
尝试以下方法:
$(document).ready(function(){
$('.this_payment').keyup(function () {
$(this).prev('.trans-selected').prop("checked", ($(this).val() > 0));
});
});
答案 2 :(得分:0)
在此处js fiddle尝试工作代码,您可以使用prev()
代替closest()
答案 3 :(得分:0)
试试这个
$(document).ready(function(){
$('.this_payment').live('change keyup',function () {
$(this).parent().find('.trans-selected').prop("checked", ($(this).val() > 0));
});
});