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


$('#hetong_fu1').bind('input propertychange',function(){

    debugger;

    $('#deposit1').val(car_deposit());

});

$('#hetong_ya1').bind('input propertychange',function(){

    debugger;

    $('#deposit1').val(car_deposit());

});

$('.floor_rent').bind('input propertychange',function(){

    debugger;

    $('#deposit1').val(car_deposit());

});


一只萌萌小番薯
浏览 492回答 2
2回答

绝地无双

$('#hetong_fu1, #hetong_ya1, .floor_rent').bind('input propertychange',function(){    debugger;    $('#deposit1').val(car_deposit());});

慕虎7371278

先为这些元素添加一样的classname,比如hetong,然后jq有隐形迭代,下面这么做就可以了。$('.hetong').bind('input propertychange',function(){    debugger;    $('#deposit1').val(car_deposit());});
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript