2

シックボックスが閉じられたら機能をアクティブにする方法について、誰かが私にアドバイスしてくれませんか。これは大歓迎です。

function tb_remove() {
    window.parent.pageUpdate();// << this is what i have tried
    $("#TB_imageOff").unbind("click");
    $("#TB_closeWindowButton").unbind("click");
    $("#TB_window").fadeOut("fast",function(){$('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});
    $("#TB_load").remove();
    if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
        $("body","html").css({height: "auto", width: "auto"});
        $("html").css("overflow","");
    }
    document.onkeydown = "";
    document.onkeyup = "";
    return false;
}
4

1 に答える 1

0

その関数呼び出しは機能するはずです-私のテストケースでは機能します。

Thickbox iframe を使用していますか?

于 2009-11-19T19:22:43.560 に答える