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);
}
});

  

上一篇:cURL模拟网页登陆


下一篇:jq判断元素class是否定义了CSS样式