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表单字段(单字段---》验证---》整数小数 %(同时需要))的主要内容,如果未能解决你的问题,请参考以下文章

单选按钮验证

仅当前一个字段已填写时才需要表单字段

即使未单击单选按钮,仍会提交表单[重复]

仅使用 HTML5 表单验证验证可见字段?

Flutter:表单验证同时验证所有文本字段

JQuery 验证消息奇怪地出现在两个单选按钮之间