This is possible but not exactly as you describe. The typical way the confirm function is used is:
if(confirm("Are you sure you want to submit this form?")) {
form.submit();
}
In the above example, the button press is returned synchronously to the script. Execution is paused within the function until a button is pressed.
A "modal dialog" is just an overlay over the entire contents of an HTML web page. To the browser, buttons within such an overlay work the same way as buttons anywhere else within that page do.
Since JavaScript handles such button clicks asynchronously (i.e. using callback functions to handle events) rather than synchronously, the approach you are attempting will not work.
You would need to change all parts of the code that use the confirm function to look like this:
confirm("Are you sure you want to submit this form?", function(result) {
if(result) {
form.submit();
}
});
This would work just as registering an event handler with jQuery itself does. Script execution continues immediately, skipping past all the code in the anonymous function. Later, the browser will call that function indirectly through a JavaScript event handler that you register within the confirm function, its purpose to call the callback function with either true
or false
as appropriate.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…