欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery 的each

程序员文章站 2022-07-14 12:41:03
...

 function getCheckedProductValue()
 {
     var checkedProdcutValue;
        $.each( $("[name='productRadio']"), //循环
      function(){
          if($(this).attr("checked"))
          {
              checkedProdcutValue = $(this).val();
          }
      }
  );
  return checkedProdcutValue;
 }
 

相关标签: each

上一篇: 拒绝不了打扰

下一篇: jquery 的each