jQuery を使用して送信機能をオーバーライドできます。
var sendURL = "send/to/url.php"
$('#myForm').submit(function() {
// get all the inputs into an array.
var $inputs = $('#myForm :input');
var sendData = "";
$inputs.each(function() {
sendData += this.name + "=" + $(this).val();
});
//confimation
var conf = confirm("hello world");
if(conf){
sendURL="send/to/url/1.php";
} else {
sendURL="send/to/url/2.php";
}
$.ajax({
url: sendURL,
type: 'post',
data: sendData,
success: function (data) {
//do stuff when ajax succeeds
}
});
});
あなたのjavascriptコードでsendURL変数を好きなものに変更してください...