2014-02-23 92 views
0

我已經使用jquery彈出窗口來顯示我的網頁中的消息。現在我想重定向到另一個頁面時,單擊jquery popup.I不知道如何做到這一點。重定向到另一個頁面時,點擊jQuery的彈出式按鈕

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script> 
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/start/jquery-ui.css" 
    rel="stylesheet" type="text/css" /> 
<script type="text/javascript"> 
    function ShowPopup(message) { 
     $(function() { 
      $("#dialog").html(message); 
      $("#dialog").dialog({ 
       title: "Mandirdarsan Warning", 
       buttons: { 
        Ok: function() { 
         $(this).dialog('ok'); 
        } 
       }, 
       modal: true 
      }); 
     }); 
    }; 
</script> 

回答

1
Ok: function() { 
    window.location="newurl"; 
} 
相關問題