<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$.fn.numeral = function() {
$(this).css("ime-mode", "disabled");
this.bind("keypress",function() {
if (event.keyCode == 46) {
if (this.value.indexOf(".") != -1) {
return false;
}
} else {
return event.keyCode >= 46 && event.keyCode <= 57;
}
});
this.bind("blur", function() {
if (this.value.lastIndexOf(".") == (this.value.length - 1)) {
this.value = this.value.substr(0, this.value.length - 1);
} else if (isNaN(this.value)) {
this.value = "";
}
});
this.bind("paste", function() {
var s = clipboardData.getData('text');
if (!/D/.test(s));
value = s.replace(/^0*/, '');
return false;
});
this.bind("dragenter", function() {
return false;
});
this.bind("keyup", function() {
if (/(^0+)/.test(this.value)) {
this.value = this.value.replace(/^0*/, '');
}
});
};
</script>
<label>配额:</label>
<input type="text" id = "quota_setting" name="quota_setting" value="1.0"/>
<script type="text/javascript">
$("#quota_setting").numeral();
</script>
限制输入框只能输入数字(小数可以输入)
转载
核心提示:
script type=text/javascript src=js/jquery-1.4.4.min.js/script script type=text/javascript $.fn.numeral = function() { $(this).css(" ...
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
输入框input只能输入数字
利用正则表达式,输入框只能输入数字,否则为空; 用到的js有replace,no-pattern; vla.replace(A,B);//用B取代A的值,...
正则表达式 python 算法 java 人工智能 -
Ant Design Vue 全局按钮颜色
1.1Vue-Router 使用步骤 yarn add vue-router --dev import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) 样式案例:// view/Blog.vue 路由相关的组件(视图) 1.2动态路由 // router/index.js
js 点击button切换颜色 js在当前页面跳转到指定位置 vue push时对象错乱 Vue 服务器