/**
* 获取 选中的id
* @returns {*}
*/
function getCheckedList(){
var groups =[];
$("input[name='checkList']:checked").each(function(){
var o = {};
o.org = $(this).attr("org");
o.id = $(this).val();
groups.push(o);
});
if(groups.length < 1){
oAlert("请至少选择一条数据。");
return false;
}
return groups;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-17
  • 2021-04-26
  • 2022-01-04
  • 2022-02-25
  • 2022-02-09
猜你喜欢
  • 2021-12-09
  • 2021-11-20
  • 2022-02-16
  • 2021-12-27
  • 2022-12-23
相关资源
相似解决方案