前端用于控制输入框的数据类型,有两种数据类型,整形与decimal型,添加失去焦点事件,可轻松的实现对数据的验证。
Sh_decimal(input)Contents
- Sh_decimal(input)
obj
输入框对象
_type
类型(int(整型)/decimal)
_default
默认值
html代码
<head>
<title></title>
<link href="/_css/manage.css" rel="stylesheet" type="text/css" />
<script src="/_js/jquery-1.8.2.min.js" type="text/javascript"></script>
<script src="/_js/Valid.js" type="text/javascript"></script>
<script src="/_js/Sh_property.js" type="text/javascript"></script>
<script src="download.js" type="text/javascript"></script>
</head>
<body>
<font>金额:</font><input class="txt or_pay" type="text" maxlength="10" value="0.00" />
</body>
fun_blur()
失去焦点事件
示例:
new Sh_decimal({
obj: $('.or_pay'),
type: 'decimal',
def_txt: '0.00',
fun_blur: function () {
alert("失去焦点事件");
}
});
obj: $('.or_pay'),
type: 'decimal',
def_txt: '0.00',
fun_blur: function () {
alert("失去焦点事件");
}
});
展示效果: