如何使用 JavaScript 显示提示对话框?
当你想要弹出文本框获取用户输入时,提示对话框非常有用。它使你能够与用户进行交互。用户需要填入该字段,然后点按确定。
此对话框使用名为 prompt() 的方法显示,它采用两个参数:(i) 你想要在文本框中显示的标签和 (ii) 在文本框中显示的默认字符串。
此对话框有两个按钮:确定和取消。如果用户点按确定按钮,窗口方法 prompt() 将返回文本框输入的值。如果用户点按取消按钮,窗口方法 prompt() 将返回 null。
示例
你可以尝试运行以下代码,了解如何使用 JavaScript 实现提示对话框
<html> <head> <script> <!-- 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>
广告