删除“$”从表单输入字段

发布于 2024-12-11 18:58:27 字数 123 浏览 0 评论 0原文

我正在一个网站上工作,该网站使用表格接受其基金会的捐款。如果实际美元金额中包含“$”,支付网关会返回错误。

如果他们输入“$”,有没有一种简单的方法可以在提交表单之前将“$”从输入字段中删除?

谢谢。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

失而复得 2024-12-18 18:58:27
$('#donationform').submit(function() {
  //get amount value
  var CurrencyField = $("input[name='chargetotal']").val()
  //return amount without $
  $("input[name='chargetotal']").val( CurrencyField.replace('

应该可以解决这个问题:)

, '') ); });

应该可以解决这个问题:)

$('#donationform').submit(function() {
  //get amount value
  var CurrencyField = $("input[name='chargetotal']").val()
  //return amount without $
  $("input[name='chargetotal']").val( CurrencyField.replace('

Should do the trick :)

, '') ); });

Should do the trick :)

A君 2024-12-18 18:58:27
$('form').submit(function() {

    $('input[type=text]', this).each(function() {
        $(this).val( $(this).val().replace(/\$/g, '') );
    });

    return true;
});
$('form').submit(function() {

    $('input[type=text]', this).each(function() {
        $(this).val( $(this).val().replace(/\$/g, '') );
    });

    return true;
});
土豪我们做朋友吧 2024-12-18 18:58:27

在客户端(jquery/javascript)

var fieldvalue = {...get from input field...};
fieldvalue = fieldvalue.replace(/\$/,"");

在服务器端(php,提交后)

$fieldvalue = $_POST['fieldname'];
$fieldvalue = str_replace("$", "", $fieldvalue); 

on client-side (jquery/javascript)

var fieldvalue = {...get from input field...};
fieldvalue = fieldvalue.replace(/\$/,"");

on server-side (php, after submitting)

$fieldvalue = $_POST['fieldname'];
$fieldvalue = str_replace("$", "", $fieldvalue); 
锦爱 2024-12-18 18:58:27

提交后,在返回 true 之前,对字段内容使用“replace”方法。

on submission, use the "replace" method on the contents of the field before returning true.

万水千山粽是情ミ 2024-12-18 18:58:27

您可以使用 String.replace从字符串中删除任何子字符串:

var amount = $('#amount').val().replace('

将使 amount 包含 id="amount" 表单字段的值,其中不包含第一个美元符号。

, '');

将使 amount 包含 id="amount" 表单字段的值,其中不包含第一个美元符号。

You can use String.replace to remove any substring from a string:

var amount = $('#amount').val().replace('

will make amount contain the value of the form field with id="amount" without the first dollar sign in it.

, '');

will make amount contain the value of the form field with id="amount" without the first dollar sign in it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文