1. 程式人生 > >easy-ui表單字段(單字段---》驗證---》整數、小數 、%(同時需要))

easy-ui表單字段(單字段---》驗證---》整數、小數 、%(同時需要))

put clas -o urn datebox easy from data rule

// 單字段---》驗證---》整數、小數 、%(同時需要)

<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表單字段(單字段---》驗證---》整數、小數 、%(同時需要))