jquery(javascript)刷新div

时间:2010-11-19 22:48:56

标签: javascript jquery

忍受我。我最近开始在工作中实现jquery。我已经创建了一个新的应用程序,所以我确实理解了什么,但我还没有完全掌握它。

我在下面有这个函数,只要有人点击包含在唯一div id中的表中的复选框,就会调用此函数。目前,在关闭对话框之前,表不会刷新。我希望在服务器完成请求后刷新div。

我只是通过再次调用displayMid函数(仅在下面的代码中注释掉)来使其仅适用于表中的第一行。

如何让这对所有表行都有效?你可以看到我已经尝试了一些事情。 ; - )

任何帮助表示赞赏!谢谢!

function addRemoveMid(count, testpid) {
        var x = testpid;
        var y = $("#Mid" + count).text();
        var a = $("#midcheckbox" + count).is(':checked');
        //alert(x);
        if (!$("#midcheckbox" + count).is(':checked')) {
            $.ajax({
                url: "content_backend_pub_pid.ashx",
                data: { cmd: '10', pid: x, mid: y },
                type: "get",
                async: false,
                success: function(o) {
                    //displayMid(count);
                    //$("#inputDiv4").replaceWith($('#inputDiv4', $(html)));
                }
            });
            //$(this.addRemoveMid(count);
        }
        else {
            $.ajax({
                url: "content_backend_pub_pid.ashx",
                data: { cmd: '9', pid: x, mid: y },
                type: "get",
                async: false,
                success: function(o) {
                    //displayMid(count);
                    //$("#inputDiv4").replaceWith($('#inputDiv4', $(html)));
                }
            });
            //displayMid(count);
        }
        //$("#inputDiv4").fadeOut("fast").html('reload.php').fadeIn("fast");
    }

2 个答案:

答案 0 :(得分:0)

'目前,在关闭对话框之前表不会刷新'这意味着什么?我只看到一个注释警报(x)。你在谈论什么对话框?

答案 1 :(得分:0)

计划发生了变化,我的老板说他宁愿在结束时刷新。所以它的方式很好。