prompt
The 'prompt' function displays a dialog box asking for user input;
'prompt'函数弹出窗口让用户输入内容。
- Prototype: prompt(sMsg, sInitVal, sTitle);
- Parameters:
- sMsg: specifies a message to display;
显示的信息 - sInitVal, specifies an initial text;
初始值 - sTitle: title of the dialog box;
对话框标题
- sMsg: specifies a message to display;
- Return Value: String, text of user input;
- Example:
var sTxt=prompt('Username:', '', 'Enter user name');