2014-01-25 147 views
0

我是jquery的新手,並且非常努力地設置刪除特定項目的確認對話框。我可以查看彈出窗口,但是當我在彈出窗口上單擊DELETE時,它不會重定向或加載新頁面,而是保持在同一頁面上。我正在使用Jquery mobile 1.3.2版本。JQuery Mobile刪除確認對話框

任何解決此問題的幫助都會非常有幫助。以下是我使用的示例代碼。

<body> 

<div data-role="page" class="type-interior"> 

<?php include "files/header2.php";?>  

<div data-role="content" data-theme="d" > 
    <div class="content-primary"> 


     <h2><img src="images/insert_table.gif" alt="">Confirmation </h2> 

      <a href="#popupDialog" data-rel="popup" data-position-to="window" data-role="button" data-transition="pop" data-icon="delete" data-theme="b" data-mini="true">Delete</a> 
      <div data-role="popup" id="popupDialog" data-overlay-theme="b" data-theme="d" data-dismissible="false" style="max-width:400px;" class="ui-corner-all"> 
       <div data-role="header" data-theme="a" class="ui-corner-top"> 
        <h1>Delete Item ?</h1> 
       </div> 
       <div data-role="content" data-theme="d" class="ui-corner-bottom ui-content"> 
        <h3 class="ui-title">Are you sure you want to delete this Item ?</h3> 
        <p>This action cannot be undone.</p> 
        <a href="#" data-role="button" data-inline="true" data-rel="back" data-theme="c">Cancel</a> 
        <a href="del_confirm.php" data-role="button" data-inline="true" data-rel="back" data-transition="flow" data-theme="b" rel="external">Delete</a> 
       </div> 
      </div> 

</div><!--/content-primary -->  

+0

彈出DIV應該是_page_ div的_child_。 – Omar

回答

0

首先你關閉彈出調用此代碼

$("#popupDialog").popup("close"); 

然後使用此代碼

$.mobile.changePage('#id', { transition: "slide"}); //id means your redirection page id 
更改頁10

使用jQuery 刪除()功能

$("#id").remove(); 

如果您重定向空白頁是指使用jQuery移動對話框終於刪除項目

編碼快樂......