This article introduces you to the usage of BOM objects in Javascript. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Window
Customize the nature of all variables
Any global variable function object we define will become an attribute of the window object
Built-in global variables and Method
Global constants: Infinity, NaN, undefined, null
Global methods: eval(), isFinite(),
isNaN(), parseFloat(), parseInt(),decodeURI(),decodeURIComponent(),
encodeURI(), encodeURIComponent()
Window common methods
Open Close
Location object
1. Attribute
hash Sets or returns the URL starting with the pound sign (#) (anchor)
host Sets or returns the host name and port number of the current URL
hostname Sets or returns the host name of the current URL
href Sets or returns the complete URL
pathname Sets or returns the path part of the current URL
port Sets or returns the port number of the current URL
protocol Sets or returns the protocol of the current URL
**search Sets or returns the URL starting from the question mark (?) (query part) ** Used to obtain the query string ( For example: window.location.search)
2. Method
assign()
Load a new document, this The effect is the same as directly assigning a URL to the href attribute of the Location object
reload()
Reload the current document
If the method does not specify parameters, or parameters If false, it will use the HTTP header If-Modified-Since to detect whether the document on the server has changed. If the document has changed, reload() will download the document again.
If the document has not changed, this method will load the document from the cache.
This is exactly the same as the effect of the user clicking the browser's refresh button.
If the parameter of this method is set to true, then regardless of the last modification date of the document, it will bypass the cache and re-download the document from the server. This has the exact same effect as if the user held down the Shift key while clicking the browser's refresh button.
replace()
Replace the current document with a new document. The replace() method will not generate a new record in the History object.
When this method is used, the new URL will overwrite the current record in the History object.
History
History
Common methods and properties For example: window.history.forward()
go(-1)
Return to the previous page
.back()
Back
.forward()
Forward
Navigator
Common methods and properties
appCodeName browser code name
appName browser name
ppVersion browser version number
userAgent browser name and version number
platform browser platform
Win32 ", "Win16", "WinCE", "Mac68k", "MacPPC", "HP-UX", "SunOS", etc.
cpuClass CPU information "x86"
online Whether the browser is online
cookieEnabled Is cookie available?
Error
常用方法和属性 try { alert(‘’) } catch(e) { e.message }
Recommended related articles:
The call() method and apply() method in Javascript What are the usages? (Code attached)
A brief explanation of function scope and block-level scope in JavaScriptThe above is the detailed content of Usage of BOM objects in Javascript. For more information, please follow other related articles on the PHP Chinese website!

Java作为一门常见的编程语言,其在IT行业中有着广泛的应用,成为了许多公司招聘中的重要技能之一。在Java开发岗位的面试中,面试官往往会问及一些常见的Java问题,以此考察应聘者的Java编程水平。本文将列举几个常见的Java面试问题及其答案,供广大应聘者参考。什么是Java虚拟机?答:Java虚拟机(JVM)是一种虚拟的计算机,可以执行Java字节码。它

PHP的面向对象编程范式为项目管理和组织提供优势随着互联网的飞速发展,各种规模的网站和应用程序如雨后春笋般涌现出来。为了满足日益增长的需求,并提高开发效率和可维护性,采用面向对象编程(Object-OrientedProgramming,简称OOP)的方法成为了现代软件开发的主流。在PHP这样的动态脚本语言中,OOP为项目管理和组织带来了许多优势,本文将介

随着计算机应用的不断普及和发展,程序设计语言也不断演化和更新。面向对象编程语言在当今程序设计中占据了主导地位,而MySQL则是最流行的关系型数据库管理系统之一。如何在面向对象编程中结合使用MySQL实现更优雅的代码呢?一、面向对象编程的基本概念面向对象编程(ObjectOrientedProgramming,简称OOP)是一种编程思想,它强调对象的概念和

Java是一种面向对象编程语言,具备三个重要的特性:封装、继承和多态。这三个特性使得Java程序具有高度的可重用性、可维护性和可扩展性。在本文中,我们将介绍Java面向对象编程的三个重要特性。一、封装封装是面向对象编程的基础。它是指将数据和行为封装在一起,保护数据不被直接访问,而是通过类的接口进行访问。封装可以使得程序更加安全、可靠和易于维护。在Java中,

面向对象编程是一种编码设计,它使用数据来表示一组指令。它是一种具有对象概念的程序编程典范,同时也是一种程序开发的抽象方针。它由描述状态的属性和用来实现对象行为的方法组成,完成了从数据模型到处理模型的结合与统一。

PHP面向对象编程中的访问者模式解析访问者模式是一种常用的设计模式,它可以分离数据结构和处理逻辑,使得同一个数据结构可以有不同的处理逻辑,而且可以在不修改数据结构的情况下增加新的处理逻辑。在PHP中,访问者模式可以帮助我们更好地组织代码,并提高代码的可维护性和可扩展性。本文将深入探讨PHP面向对象编程中的访问者模式,并通过示例代码进行解析。一、模式概述访问者

理解PHP面向对象编程中的工厂模式工厂模式是一种常用的设计模式,它用于创建对象的过程中将对象的创建和使用解耦。在PHP面向对象编程中,工厂模式可以帮助我们更好地管理对象的创建和生命周期。本文将通过代码示例来详细介绍PHP中的工厂模式。在PHP中,我们可以通过使用工厂模式来实现对象的创建和初始化过程,而不是直接使用new关键字。这样做的好处是,如果将来需要改变

解析PHP面向对象编程中的类属性和方法PHP是一种被广泛应用于Web开发的脚本语言,它支持面向对象编程(OOP)的特性。在PHP中,类是一种用来创建对象的蓝图或模板,而属性和方法则是类的核心部分。本文将深入解析PHP面向对象编程中的类属性和方法,并通过代码示例来加深理解。一、类属性类属性是指用于描述类的特有数据的变量。它们可以存储对象的状态和特征。在PHP中


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
