• input reset 重置时间


    经验规律,301毫秒。

    
    function autoFormatMoney() {
         if (!this.value.length) {return}
         var num = parseFloat(this.value.replace(/,/g, ''));
         if (isNaN(num)) {return}
         var name = this.name;
         if (name === 'paymentValue') {
             this.value = window.format_number(num);
             form.paymentRatio.value = ((num / totalAsset)*100).toFixed(3);
             !triggerFromReset && $(form.paymentRatio).trigger('focus');
         } else if (name === 'paymentRatio') {
             this.value = num.toFixed(3);
             form.paymentValue.value = window.format_number(( num / 100 )* totalAsset);
         } else if(name === 'fees' || name === 'insurance'){
             this.value = window.format_number(num);
         } else if(name === 'rate' || name === 'taxes'){
             this.value = num.toFixed(3);
         }
         triggerFromReset = false;
     }
    
     $(form.homePrice).on('change', autoFormatMoney).trigger('change');
     $(form.paymentValue).on('change', autoFormatMoney).trigger('change');
     $(form.paymentRatio).on('change', autoFormatMoney).trigger('change');
     $(form.fees).on('change', autoFormatMoney).trigger('change');
     $(form.taxes).on('change', autoFormatMoney).trigger('change');
     $(form.rate).on('change', autoFormatMoney).trigger('change');
     $(form.insurance).on('change', autoFormatMoney).trigger('change');
    
     $('.calculator-func_reset').on(Data.CLICK,function(e){
         triggerFromReset = true;
         setTimeout(function() {
             $sindeoCal.find('input').trigger('change');
         }, Data.isMobile?301:10);
     });
    
    
    // input readonly 之后依旧调起输入法 unselectable="on" onfocus="this.blur()"
    $('.slide-figure').on('focus','input',function () {
        if (data.isLogin){
            $(this).attr('unselectable','on');
            $(this).blur();
        }
    });
    

    类似点透

    $('.toggle-show').on(CLICK,function(){
        $('.toggle-text').toggle();
        $('.toggle-icon').toggleClass('icon-up');
        $('.toggle-input').toggle(100);
        $('.m-calc input[name="propertyTaxRate"]').one('focus',function () {
            $(this).blur();
        });
    });
    
  • 相关阅读:
    20145212 《Java程序设计》第10周学习总结
    20145212 实验五《Java网络编程》
    20145212 《Java程序设计》第9周学习总结
    20145212 实验四《Andoid开发基础》
    《信息安全系统设计基础》第2周总结
    20145210《信息安全系统设计基础》第1周学习总结
    20145210 《信息安全系统设计基础》第0周学习总结
    20145210姚思羽_课程总结
    20145210实验五《Java网络编程》
    20145210 《Java程序设计》第十周学习总结
  • 原文地址:https://www.cnblogs.com/lakeInHeart/p/7815890.html
Copyright © 2020-2023  润新知