//检测勾选值
    function checkEnter() {
        var Ivalue = "";
        $("#dataTable tr").each(function () {
            var chk = $(this).find('td').eq(0).find('#subcheck');
            if (chk.attr("checked") == "checked") {
                var IsEter = $(this).find('td').eq(5).find('input');
                Ivalue = IsEter.val();
            }
        });
        return Ivalue;
    }

 

相关文章:

  • 2021-06-16
  • 2022-01-11
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
猜你喜欢
  • 2022-12-23
  • 2021-08-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
相关资源
相似解决方案