我有一些在模式中更新的值集合,並且在同一頁面上打開模式。 在關閉的模態如何可以刷新頁面中的jQuery當對話框Modal關閉時,如何刷新Jquery中的頁面
$("#dialog-modal").bind('dialogclose',function() {
//How Do i refresh the current Page.
)};
我有一些在模式中更新的值集合,並且在同一頁面上打開模式。 在關閉的模態如何可以刷新頁面中的jQuery當對話框Modal關閉時,如何刷新Jquery中的頁面
$("#dialog-modal").bind('dialogclose',function() {
//How Do i refresh the current Page.
)};
$("#dialog-modal").bind('dialogclose',function(){
// force the browser to get the page from the server
window.location.reload(true);
)}
編輯:
它會出現在OP是尋找這個答案(從評論,是低):
$("#dialog-modal").bind('dialogclose',function(){
$('#someForm').submit();
)}
window.location.reload(true);
他說什麼;) – 2010-09-13 18:31:27
會吃掉你:當我上面的行說,這是顯示白屏在IE和它與對話說:「該頁面無法刷新,直到沒有重新發送信息ciick重試再次發送信息「我如何避免該對話並刷新 – Someone 2010-09-13 18:46:01
您讓用戶通過POST到達此頁面。請參閱http://en.wikipedia.org/wiki/Post/Redirect/Get – jrharshath 2010-09-13 18:48:26
@這裏:如果您不介意,請使用Twitter風格的「@username」,以便您所處理的人得到您的通知響應。我很困惑你的評論... – 2010-09-13 18:51:37