easy-ui表单字段(单字段---》验证---》整数小数 %(同时需要))
Posted darkqueen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easy-ui表单字段(单字段---》验证---》整数小数 %(同时需要))相关的知识,希望对你有一定的参考价值。
// 单字段---》验证---》整数、小数 、%(同时需要)
<script>
//保底值
$.extend($.fn.validatebox.defaults.rules, { //此句为自定义重写校验
bottom_value: {
validator: function (value) {
return /^d+(.d+)?$/i.test(value);
},
message: ‘请输入(整数,小数,百分率),并确保格式正确‘
},
});
</script>
<body>
<form id=“123” class ="form">
<table>
<tr>
<td class="right">
<label for="bottom_value">保底值:</label>
</td>
<td class="left">
<input type="text" id="bottom_value" name="bottom_value" style="width:200px;height:28px"
class="easyui-validatebox" data-options="required:false,validType:‘bottom_value‘" />
</td>
</tr>
</table>
</from>
</body>
以上是关于easy-ui表单字段(单字段---》验证---》整数小数 %(同时需要))的主要内容,如果未能解决你的问题,请参考以下文章