HTML DOM defaultStatus 属性

定义和用法

defaultStatus 属性可设置或返回窗口状态栏中的默认文本。该属性可读可写。

该文本会在页面加载时被显示。

语法

  1. window.defaultStatus=sometext

实例

下面的例子讲在状态栏设置文本:

  1. <html>
  2. <body>
  3.  
  4. <script type="text/javascript">
  5. window.defaultStatus="This is the default text in the status bar!!";
  6. </script>
  7.  
  8. <p>Look at the text in the statusbar.</p>
  9.  
  10. </body>
  11. </html>