作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的按钮中有以下 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/
我是一名优秀的程序员,十分优秀!