我有一個非常奇怪的問題!我在我的一個頁面中使用了blockUI JQuery插件,它工作正常。我爲另一個頁面做了同樣的事情,當$ unblockUI被調用時,它並沒有解鎖頁面。JQuery BlockUI不解除頁面
下面是代碼:
function showCommentBox()
{
$("#commentBox").addClass("modalPopup");
alert($("#commentBox").hasClass("modalPopup"));
$.blockUI({ message: $("#commentBox") });
}
function cancelComment()
{
alert($("#commentBox").hasClass("modalPopup"));
$.unblockUI();
}
當$( 「#commentBox」)hasClass( 「modalPopup」)中,而該cancelComment功能評估不工作返回 「假」 的頁面。工作正常的頁面返回true。
請閱讀我編輯的答案,並讓我知道它是否可以幫助你 – 2009-06-04 23:06:56