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();
});
});
input reset 重置时间的更多相关文章
- spring实现可重置时间定时器
此文章是基于 搭建Jquery+SpringMVC+Spring+Hibernate+MySQL平台 一. jar包介绍 1. spring-framework-4.3.4.RELEASE 的 lib ...
- form表单reset重置按钮
如果ajax提交完数据,后想清空表单内容 ,以前都是用这个方法$("#id").val(""); 一个一个清空的,其实可以在form表单中加个隐藏的<in ...
- clion2020最新安装破解版教程 内含激活码、破解补丁、无限重置时间插件
clion是一款开发C.C++等相关程序的利器,到目前为止已经更新到2020.3版本啦!还没有升级的小伙伴们赶紧升级啦,本文教大家如何安装clion2020.3版本并且破解,此方法亲测100%可以永久 ...
- js动态生成input指定My97DatePicker时间问题
js生成的input指定onclick时间: 以下1.2为错误: onclick="WdatePicker()"; onclick=WdatePicker(); 若指定到windo ...
- clear & file input & reset & file input
clear & file input & reset & file input Clear <input type="file"> docume ...
- css reset重置样式有那么重要吗?
在以前写html代码的时候,一般都会在head里添加重置样式reset.css,其内容如下: @charset "utf-8"; html, body, div, span, ap ...
- angularjs <input>标签获取时间显示问题
一般的后台管理中,几乎每个管理后台都有设置新密码的功能,但是获取的时候为了好看,都有统一用一定的标签,比如input标签,ng-model来控制显示数据,但是在获取时间的时候用会显示错乱 代码为: & ...
- js-form进行reset重置
(需要注意:做这个reset和submit时页面不能有这两个id和名称) <form id="form1" name="formName" action= ...
- my97datepicker插件日期值改变事件 等同于input的onchang()时间
官网Demo地址http://www.my97.net/demo/index.htm <input type="text" class="Wdate" v ...
随机推荐
- 第一册:lesson sixty one.
原文: A bad cold. A:Where is Jim? B:He is in bed. A:What's the matter with him? B:He fells ill. A:He l ...
- linux下定时执行任务的方法
linux下定时执行任务的方法 在LINUX中你应该先输入crontab -e,然后就会有个vi编辑界面,再输入0 3 * * 1 /clearigame2内容到里面 :wq 保存退出. 在LINUX ...
- python特色_字典,元组,列表
一.前言: 1.许多编程语言的基本数据类型都大同小异,而字典,元组,列表是python编程语言的一大特色,能够非常简单的完成很多功能,学习好字典,元组,列表能够为以后大数据,批处理......提供很多 ...
- RabbitMQ 基本概念总结
1.ack模式-应答模式 执行一个任务可能需要花费几秒钟,你可能会担心如果一个消费者在执行任务过程中挂掉了.一旦RabbitMQ将消息分发给了消费者,就会从内存中删除.在这种情况下,如果正在执行任务的 ...
- python使用gevent实现并发下载器
并发下载原理 import gevent from gevent import monkey import urllib.request monkey.patch_all() def my_downl ...
- Spring Boot(Spring的自动整合框架)
Spring Boot 是一套基于Spring框架的微服务框架,由于Spring是一个轻量级的企业开发框架,主要功能就是用于整合和管理其他框架,想法是将平时主流使用到的框架的整合配置预先写好,然后通过 ...
- 浅谈spring中AOP以及spring中AOP的注解方式
AOP(Aspect Oriented Programming):AOP的专业术语是"面向切面编程" 什么是面向切面编程,我的理解就是:在不修改源代码的情况下增强功能.好了,下面在 ...
- Flask 系列之 LoginManager
说明 操作系统:Windows 10 Python 版本:3.7x 虚拟环境管理器:virtualenv 代码编辑器:VS Code 实验目标 通过使用 flask-login 进行会话管理的相关操作 ...
- cf1132E. Knapsack(搜索)
题意 题目链接 Sol 看了status里面最短的代码..感觉自己真是菜的一批..直接爆搜居然可以过?..但是现在还没终测所以可能会fst.. #include<bits/stdc++.h> ...
- Mycat 中间件配置初探与入门操作
Mycat中间件配置初探与入门操作 By:授客 QQ:1033553122 实践环境 Mycat-server-1.5.1-RELEASE-20161130213509-win.tar.gz 下载地址 ...