gpt4 book ai didi

javascript - 获取值和文本以及div内容javascript

转载 作者:行者123 更新时间:2023-12-03 03:29:30 25 4
gpt4 key购买 nike

我的按钮中有以下 JavaScript 代码

$('#button-confirm').on('click', function() {
$.ajax({
type: 'post',
url: 'index.php?route=payment/leasing_plans/confirm',
cache: false,
data:{
egn: $('#input-payment-egn').val(),
months: $('input[name=months]:checked').parent().text()
},
beforeSend: function() {
$('#button-confirm').button('loading');
},
complete: function() {
$('#button-confirm').button('reset');
},
success: function() {
location = '<?php echo $continue; ?>';
}
});
});

我想从这个div中获取数据

<div id="uni18" class="leasecond">
<input type="text" style="border: none; background: repeat;" readonly />Разсрочено плащане с UNI Credit, вноски 18 x обща дължима сума:

以及单选按钮中的文本和值

<div class="radio">
<label><input type="radio" name="months" value="uni18" />18 месеца x </label>
</div>

怎样才能实现呢?谢谢!

最佳答案

我是这样做的:

months: $('input[name=months]:checked').parent().text() + $('input[name=months]:checked').val()

关于javascript - 获取值和文本以及div内容javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46156625/

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