亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM defaultStatus 屬性

定義和用法

defaultStatus 屬性可設(shè)置或返回窗口狀態(tài)欄中的默認文本。該屬性可讀可寫。

該文本會在頁面加載時被顯示。

語法

window.defaultStatus=sometext

實例

下面的例子講在狀態(tài)欄設(shè)置文本:

<html>
<body>

<script type="text/javascript">
window.defaultStatus="This is the default text in the status bar!!";
</script>

<p>Look at the text in the statusbar.</p>

</body>
</html>