JavaScript Reference/Javascript Properties/status window

Материал из Web эксперт
Версия от 11:22, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"status" Example

   <source lang="javascript">
   

<html><head> <script language="JavaScript">

   function function1() {
       window.status = "Welcome to www.wbex.ru";
   }

</script> </head> <body>

Check the status bar message.

</body> </html>


     </source>
   
  


"status" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |window | +----------------+--------------------------------------------------------------+

     </source>
   
  


"status" Syntax and Note

   <source lang="javascript">

Note: Read and write property. Specifies the message in the status bar of the window.

Syntax:

window.status = value


     </source>