日付オブジェクト
10572 ワード
ブラウザオブジェクトモデルBOM
BOMオブジェクトの概念
windowオブジェクトの5つのサブオブジェクト
Screenオブジェクト:クライアント表示画面に関する情報を含む.
Historyオブジェクト:ユーザ(ブラウザウィンドウで)がアクセスしたURLを含みます.
BOMオブジェクトの概念
Date JavaScript 。 (UTC)1970 1 1 00:00:00
, 1 ( )。Date 1970 1 1 285616 。1m = 1ms
BOMオブジェクトのコアBOM window( );
window , window , window
:window window.name
windowオブジェクトwindowオブジェクトの5つのサブオブジェクト
window , 。
location , , URL 。
navigator , 。
screen 。
history , 。
windowオブジェクトの一般的な方法open()を使用して、新しいブラウザウィンドウを開くか、名前付きのウィンドウを検索します. //window.open();// ,
window.open("http://www.baidu.com");// ,
現在のページを閉じます.<input type="button" value=" " οnclick="window.close()">
ページ読み込みイベント window.onload = function () {
//
}
LocationオブジェクトLocationオブジェクト概念及び常用属性Locationオブジェクト:現在ページのURL(統一リソースロケータ)を取得または設定するためのもの // location
console.log(location.href);// URL
console.log(location.protocol);// Web
console.log(location.host);//
console.log(location.hostname);//
console.log(location.port);//
console.log(location.pathname);//
// location
location.assign('http://www.baidu.com');//
location.reload();// ,
NavigatorオブジェクトNavigatorオブジェクト:ブラウザに関する情報を含む console.log(navigator.platform);//
console.log(navigator.userAgent);//
console.log(navigator.language);//
現在のユーザのアクセス先を判断します. var str = navigator.userAgent;
if (str.includes('Mobile')) {
alert(' ');
} else {
alert(' ');
}
————————————————
: CSDN 「cxl81」 , CC 4.0 BY-SA , 。
:https://blog.csdn.net/weixin_46031154/article/details/103752109
シュリーンオブジェクトScreenオブジェクト:クライアント表示画面に関する情報を含む.
console.log(screen.availWidth);//
console.log(screen.availHeight);//
console.log(screen.width);// ( )
console.log(screen.height);// ( )
オブジェクトHistoryオブジェクト:ユーザ(ブラウザウィンドウで)がアクセスしたURLを含みます.
// history
console.log(history.length);// URL
// history
history.back();// ( )
history.forward()// ( )