alert

The 'alert' function displays a given message in a popup window;
'alert'函数使用弹窗返回相关信息。

  • Prototype: alert(sMsg, sTitle);
  • Parameters:
    1. sMsg: specifies a message to display;
      需要显示的内容
    2. sTitle: specifies a title for the popup window;
      弹窗的标题
  • Return Value: Undefined
  • Example:
    alert('Hello, World!');