本文介绍了如何在原型中的onclick事件后获取单选按钮值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在原型js中使用了以下代码-
I am using the following piece of code in the prototype js-
$('co-payment-form').on('change', 'input:radio', function() {
alert(this.value);
});
我想在单击单选按钮后获取单选按钮值.我试过 this.value 但价值未定义.请帮助我如何获得价值.谢谢
I want to get the radio button value after clicking the radio button. I tried this.value but value is coming undefined. Please help me how to get the value. Thanks
推荐答案
使用此代码.
$('co-payment-form').on('change', 'input:radio', function(el) {
alert($(el.target).value);
});
这篇关于如何在原型中的onclick事件后获取单选按钮值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!