beforeSubmit でカップル関数をトリガーしようとしています。まず、選択したオプションが有効かどうかを確認します。次に、モーダル ウィンドウを使用して、ユーザーに変更を確認してもらいます。コードの一部を次に示します。
<script type="text/javascript" language="javascript" src="scripts/jquery-latest.js"></script>
<script type="text/javascript" language="javascript" src="scripts/jquery.form.js" ></script>
<script type="text/javascript" language="javascript" src="scripts/jquery.simplemodal-1.4.3.js"></script>
<link rel="stylesheet" type="text/css" href="css/modalWins.css" />
<script>
$().ready(function() {
$('#myForm').submit(function() {
var options = {
success: showResponse,
beforeSubmit: chkService,
dataType: "json",
url:'actCustomer.cfm?vw=saveSvc&acctNum=1'
};
$('#myForm').ajaxSubmit(options);
return false;
});
showResponse = function(responseText, statusText) {
alert('am i here? ' + responseText);
$.ajax({
type: "post",
url: "actCustomer.cfm?vw=save",
cache: false,
success: function(result) {
alert(result);
},
error: function(xmlHttpRequest, status, err) {
confirm('Error: '+err);
$('#errDiv').html(err);
}
});
}
chkService = function(arr, $form, options) {
formData = 'service='+$('#svc').val();
$.ajax({
type: "post",
url: "actCustomer.cfm?vw=chkStuff",
data: formData,
cache: false,
success: function(result) {
result = $.trim(result);
if (result == 'Invalid') {
$('#errDiv').html('Invalid Selection').addClass('req');
return false;
} else if (result == 'Valid') {
return confirmUpdates(arr, $form, options);
} else {
$('#errDiv').html(result);
return false;
}
},
error: function(xmlHttpRequest, status, err) {
confirm('Error: '+err);
$('#errDiv').html(err);
}
});
}
// should we continue with the updates?
confirmUpdates = function(arr, $form, options) {
var dispMsg = 'some information here about updates.';
$('#msg-header').html('Confirmation of Updates!');
$('#msg-content').html(dispMsg).css('color','black');
$('#msg-action').html('<div align="center" style="margin-top:30px;"><input type="button" name="btnModSubmit" id="btnModSubmit" class="button submit" value="Continue"/><input type="button" name="btnModClose" id="btnModClose" class="button close" value="Cancel" style="margin-left:30px"/></div>');
$("#Msg").html('<table style="font-size:11px; color:#333; margin-left:35px;"><tr><td><img border="0" src="images/ajax-loader.gif"/></td><td style="font-weight:bold">Confirming updates...</td></table>');
$('#basic-modal-content').modal({ minHeight:320, minWidth:455 });
$('#btnModSubmit').click(function(){
// continue with the updates.
alert('continue >>');
return true;
});
$('#btnModClose').click(function(){
/* $.modal.close();
$("#formMsg").hide();
$('#formSub').show(); */
window.location.reload();
});
}
});
</script>
<form name="myForm" id="myForm" action="" method="post">
service:<input type="text" name="svc" id="svc" value="1">
<input type="submit" name="submit" id="submit" class="button submit" value="Proceed"/>
</form>
私が抱えている問題は、confirmUpdates(arr, $form, options); を返すことができなくなるとすぐに発生することです。正しく機能します。モーダル ウィンドウを起動しますが、btnModSubmit のクリックを待ちません。フォームが送信され、am i here? が表示されます。警告。
chkOptions の stuff.cfm への ajax 呼び出しが有効な場合は、confirmUpdates を実行します。ユーザーが btnModSubmit をクリックすると、true を返して showResponse を実行します。ユーザーが btnModClose をクリックすると、false が返され、showResponse は実行されません。私はこの時点で立ち往生しています。
これを修正する方法はありますか?