为了账号安全,请及时绑定邮箱和手机立即绑定

js中,如何把这三个绑定写成一个?

js中,如何把这三个绑定写成一个?

手掌心 2019-05-24 10:59:11
$('#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());
});
                            
查看完整回答
反对 回复 2019-05-24
?
慕码人2483693

TA贡献1860条经验 获得超9个赞

先为这些元素添加一样的classname,比如hetong,然后jq有隐形迭代,下面这么做就可以了。
$('.hetong').bind('inputpropertychange',function(){
debugger;
$('#deposit1').val(car_deposit());
});
                            
查看完整回答
反对 回复 2019-05-24
  • 2 回答
  • 0 关注
  • 274 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信