function GetCurrenetPoint() {
            debugger
            var currentTypes = "";
            var display = $("#input_tbType").css("display");
            if (display == "none") {
                currentTypes = "bak";
            }
            else {
                $("input[name='type']").each(function () { if ($(this).attr('checked')) { currentTypes += $(this).val() + "@"; } });
                if (currentTypes != "") {
                    currentTypes = currentTypes.substring(0, currentTypes.length - 1);
                }
                else {
                    currentTypes = "bak";
                }
            }
            return currentTypes;
        }

 

相关文章:

  • 2021-12-31
  • 2022-12-23
  • 2022-02-09
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
  • 2021-12-20
  • 2021-11-29
相关资源
相似解决方案