admin管理员组文章数量:1343342
I am using Parsley validator validating my JSP form. However I am having an issue when validating numbers. Please have a look at the below code.
<form class="form-horizontal" method="post" action="" data-parsley-validate>
<input id="textinput" name="salary" type="number" required class="form-control input-md" value=<c:out value="${designationInfo.salary}"/> >
</form>
The number field may contain the floating numbers, not only the integers. Numbers like 5500.65 must be allowed. But the parsley validator is checking for "integers" and not submitting the form if it is containing double numbers.
How can I solve this issue?
I am using Parsley validator validating my JSP form. However I am having an issue when validating numbers. Please have a look at the below code.
<form class="form-horizontal" method="post" action="" data-parsley-validate>
<input id="textinput" name="salary" type="number" required class="form-control input-md" value=<c:out value="${designationInfo.salary}"/> >
</form>
The number field may contain the floating numbers, not only the integers. Numbers like 5500.65 must be allowed. But the parsley validator is checking for "integers" and not submitting the form if it is containing double numbers.
How can I solve this issue?
Share asked Apr 24, 2015 at 9:02 PeakGenPeakGen 23.1k100 gold badges285 silver badges493 bronze badges1 Answer
Reset to default 13According to this GitHub issue thread I think you can add a step attribute to your input element like this:
<form class="form-horizontal" method="post" action="" data-parsley-validate>
<input id="textinput" name="salary" type="number" step="0.01" required class="form-control input-md" value=<c:out value="${designationInfo.salary}"/> >
</form>
Hope this helps : )
本文标签: javascriptUnable to validate the quotfloating numbersquot with parsley validatorStack Overflow
版权声明:本文标题:javascript - Unable to validate the "floating numbers" with parsley validator - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743691217a2522744.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论