2014-09-24 79 views
1

我想要一個確認彈出窗口,我可以在提交事件之前使用「確定」或「取消」,但我無法管理它。確認彈出後提交功能

這是我的代碼,謝謝你的幫助!

$('#display_events_form').submit(function() { 
      var data="eventid="+eventid+"&person="+globe_search_general_person; 

      $.post('join_event.php', data, function(response){ 

        $.each(response, function(index) { 

         $('<p align="left">Eventname: ' + response[index].name + 
         '<br>Datum/Uhrzeit: ' + response[index].startdate + 
         '<br>Ersparnis: ' + response[index].saving + ' EUR'+ 
         '<br>Treffpunkt: ' + response[index].meetingpoint + '</p>') 
         .appendTo("#join_event_response_event_details"); 

         //display_events_form 
        }); 

      },'json'); 

      $.mobile.pageContainer.pagecontainer("change", "#join_event_response", {transition: "slide"}); 
      return false; 
     }); 

回答

0

@ user3791330,$.post()之前,你可以把下面的代碼,只要你想

if(!confirm("__YOUR MSG GOES HERE____")){ 
    return false; 
}  

,或者你可以測試這樣

$(document).ready(function(){ 
    if(!confirm("Are you sure to countinue ?")){ 
     return false; 
    } 
    alert("Hi,I m on the way !!");  
}); 
+0

喜來工作,謝謝你的第一個作品完美。可以設置彈出窗口的樣式嗎?不想將互聯網地址作爲標題。 – user3791330 2014-09-24 12:04:14

+0

您不能將樣式添加到JavaScript popup(確認())。你應該使用jQuery模型或其他模型插件.. – kuldipem 2014-09-24 12:06:12

+0

如何使用jquery移動插件來更改代碼? – user3791330 2014-09-24 12:27:44