当前位置: 代码迷 >> Ajax >> ajax 顺利后刷新页面
  详细解决方案

ajax 顺利后刷新页面

热度:305   发布时间:2012-06-26 10:04:13.0
ajax 成功后刷新页面

?

 if(msg=='操作成功')
                               {
                                    $("#sectable").find("td:has(input)").each(function()
                                    {
                                        if($(this).find("input").attr("checked"))
                                        {
                                            $(this).parent().remove();
                                        }
                                    });
                                    initsec();  
                                    createOptionSec(bosslen+1);
                                    rOptionsdel("secnumberIndex");
                                    rOptions(1,"secnumberIndex");
                                    mouseSelects("secnumberIndex");
                               }
?

  相关解决方案