下面的例子在窗口状态栏设置显示的文字:
<html> <head> <script type="text/javascript"> window.status="这是设置在窗口状态栏的文字!"; </script> </head> <body> </body> </html>
0