gpt4 book ai didi

javascript - jquery传递单选按钮数组

转载 作者:行者123 更新时间:2023-12-03 10:19:32 26 4
gpt4 key购买 nike

我在弄清楚如何通过 JQUERY 传递选定的单选按钮值并最终传递到 php 时遇到了一些麻烦。

以下是 html 标记:

    <li class="gchoice_1_14_0">
<input name="donation[]" type="radio" value="25" id="donation" tabindex="14">
<label for="choice_1_14_0" id="label_1_14_0">$25</label>
</li>

<li class="gchoice_1_14_1">
<input name="donation[]" type="radio" value="50" id="donation" tabindex="15">
<label for="choice_1_14_1" id="label_1_14_1">$50</label>
</li>

<li class="gchoice_1_14_2">
<input name="donation[]" type="radio" value="100" id="donation" tabindex="16">
<label for="choice_1_14_2" id="label_1_14_2">$100</label>
</li>

<li class="gchoice_1_14_3">
<input name="donation[]" type="radio" value="350" id="donation" tabindex="17">
<label for="choice_1_14_3" id="label_1_14_3">$350 - Guardian Angel Sponsorship – a donation at this level provides interview and follow-up services for one child</label>
</li>

<li class="gchoice_1_14_4">
<input name="donationother" type="radio" value="other_amount" id="donation" tabindex="18" onfocus="jQuery(this).next('input').focus();">
<input id="donation_other" name="donation_other" type="text" value="" onfocus="jQuery(this).prev(&quot;input&quot;).attr(&quot;checked&quot;, true); if(jQuery(this).val() == &quot;Other&quot;) { jQuery(this).val(&quot;&quot;); }" onblur="if(jQuery(this).val().replace(&quot; &quot;, &quot;&quot;) == &quot;&quot;) { jQuery(this).val(&quot;Other&quot;); }" tabindex="18">
</li>

然后我尝试通过 jquery 传递数据,以便可以通过 php 捕获它。这是我现在的 jquery 标记:

        post_data = {
'user_name' : $('input[name=full_name]').val(),
'user_email' : $('input[name=email]').val(),
'address' : $('input[name=address]').val(),
'address2' : $('input[name=address2]').val(),
'city' : $('input[name=city]').val(),
'state' : $('input[name=state]').val(),
'zip' : $('input[name=zip]').val(),
'ccnum' : $('input[name=ccnum]').val(),
'expmonth' : $('select[name=expmonth]').val(),
'expyear' : $('select[name=expyear]').val(),
'cardname' : $('input[name=cardname]').val(),
'ccvcode' : $('input[name=ccvcode]').val(),
'donation' : $('input[name=donation]').val(),
'donation_other' : $('input[name=donation_other]').val(),
'phone_number' : $('input[name=phone2]').val(),
'subject' : $('select[name=subject]').val(),
'msg' : $('textarea[name=message]').val()
};

当我检查 Chrome 开发者工具中的传递时,捐赠字段根本没有被传递。

有人可以解释一下我缺少什么吗?我尝试过各种方式传递捐款,但都没有效果。

谢谢!

最佳答案

对于那些研究并发现这篇文章的人来说,我的问题的正确答案是通过执行以下操作来检测已检查的值:

'donation'  : $('input[name=donation]:checked').val(),

关于javascript - jquery传递单选按钮数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29708508/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com