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

 

posted on 2013-10-11 10:55  莫等闲也  阅读(4125)  评论(0编辑  收藏  举报