alert 提示prompt对话框 alert 确认confirmation 对话框 JavaScript alert 警告 alert 提示prompt对话框 <html> <head> <script type = "text/javascript"> <!-- function getValue() { var retVal = prompt("Enter your name : ", "your name here"); document.write("You have entered : " + retVal); } //--> </script> </head> <body> <p>Click the following button to see the result: </p> <form> <input type = "button" value = "Click Me" onclick = "getValue();" /> </form> </body> </html> alert 确认confirmation 对话框 JavaScript alert 警告