删除“$”从表单输入字段
我正在一个网站上工作,该网站使用表格接受其基金会的捐款。如果实际美元金额中包含“$”,支付网关会返回错误。
如果他们输入“$”,有没有一种简单的方法可以在提交表单之前将“$”从输入字段中删除?
谢谢。
I am working on a site that is using a form to accept donations for their foundation. The payment gateway returns an error if a "$" is included with the actual dollar amount.
Is there an easy way to strip the "$" out of the input field before submitting the form if they type one in?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
应该可以解决这个问题:)
Should do the trick :)
在客户端(jquery/javascript)
在服务器端(php,提交后)
on client-side (jquery/javascript)
on server-side (php, after submitting)
提交后,在返回 true 之前,对字段内容使用“replace”方法。
on submission, use the "replace" method on the contents of the field before returning true.
您可以使用
String.replace
从字符串中删除任何子字符串:将使
amount
包含id="amount"
表单字段的值,其中不包含第一个美元符号。You can use
String.replace
to remove any substring from a string:will make
amount
contain the value of the form field withid="amount"
without the first dollar sign in it.