prompt

The 'prompt' function displays a dialog box asking for user input;
'prompt'函数弹出窗口让用户输入内容。

  • Prototype: prompt(sMsg, sInitVal, sTitle);
  • Parameters:
    1. sMsg: specifies a message to display;
      显示的信息
    2. sInitVal, specifies an initial text;
      初始值
    3. sTitle: title of the dialog box;
      对话框标题
  • Return Value: String, text of user input;
  • Example:
    var sTxt=prompt('Username:', '', 'Enter user name');