var radio_checked_array = []; $("input[type=‘radio‘]").each(function(){ if($(this).attr(‘checked‘) == ‘checked‘){ var _each_this_val = parseInt($(this).val()); console.log(_each_this_val); radio_checked_array.push(_each_this_val); } });
Posted 盘思动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq 数组定义,拼接~~~push应用相关的知识,希望对你有一定的参考价值。
var radio_checked_array = []; $("input[type=‘radio‘]").each(function(){ if($(this).attr(‘checked‘) == ‘checked‘){ var _each_this_val = parseInt($(this).val()); console.log(_each_this_val); radio_checked_array.push(_each_this_val); } });
以上是关于jq 数组定义,拼接~~~push应用的主要内容,如果未能解决你的问题,请参考以下文章