alert 确认confirmation 对话框 JavaScript 警告(提示)alert对话框 alert 提示prompt对话框 alert 确认confirmation 对话框 <html> <head> <script type = "text/javascript"> <!-- function getConfirmation() { var retVal = confirm("Do you want to continue ?"); if( retVal == true ) { document.write ("User wants to continue!"); return true; } else { document.write ("User does not want to continue!"); return false; } } //--> </script> </head> <body> <p>Click the following button to see the result: </p> <form> <input type = "button" value = "Click Me" onclick = "getConfirmation();" /> </form> </body> </html> JavaScript 警告(提示)alert对话框 alert 提示prompt对话框