$('#hetong_fu1').bind('inputpropertychange',function(){debugger;$('#deposit1').val(car_deposit());});$('#hetong_ya1').bind('inputpropertychange',function(){debugger;$('#deposit1').val(car_deposit());});$('.floor_rent').bind('inputpropertychange',function(){debugger;$('#deposit1').val(car_deposit());});
2 回答
幕布斯6054654
TA贡献1876条经验 获得超7个赞
$('#hetong_fu1,#hetong_ya1,.floor_rent').bind('inputpropertychange',function(){debugger;$('#deposit1').val(car_deposit());});
慕码人2483693
TA贡献1860条经验 获得超9个赞
先为这些元素添加一样的classname,比如hetong,然后jq有隐形迭代,下面这么做就可以了。$('.hetong').bind('inputpropertychange',function(){debugger;$('#deposit1').val(car_deposit());});
添加回答
举报
0/150
提交
取消