Global对象
Global对象是ECMAScript中最特别的对象,因为实际上它根本不存在。如果尝试编写下面的代码,将得到错误:
错误消息显示Global不是对象,但刚才不是说Global是对象吗?没错。这里需要理解的主要概念是,在ECMAScript中,不存在独立的函数,所有函数都必须是某个对象的方法。本书前面介绍的函数,如isNaN()、isFinite()、parseInt()和parseFloat()等,看起来都像独立的函数。实际上,它们都是Global对象的方法。而且Global对象的方法不止这些。
encodeURI()和encodeURIComponent()方法用于编码传递给浏览器的URI(统一资源标识符)。有效的URI不能包含某些字符,如空格。这两个方法用于编码URI,这样用专门的UTF-8编码替换所有的非有效字符,就可以使浏览器仍能够接受并理解它们。
encodeURI()方法用于处理完整的URI(例如,http://www.wrox.com/illegal value.htm),而encodeURIComponent()用于处理URI的一个片断(如前面的URI中的illegal value.htm)。这两个方法的主要区别是encodeURI()方法不对URI中的特殊字符进行编码,如冒号、前斜杠、问号和英镑符号,而encodeURIComponent()则对它发现的所有非标准字符进行编码。例如:
这段代码输出两个值:
可以看到,除空格外,第一个URI无任何改变,空格被替换为%20。第二个URI中的所有非字母数字字符都被替换成它们对应的编码,基本上使这个URI变得无用。这就是encodeURI()可以处理完整URI,而encodeURIComponent()只能处理附加在已有URI末尾的字符串的原因。
自然,还有两个方法用于解码编码过的URI,即decodeURI()和decodeURIComponent()。如你所料,这两个方法所做的恰与其对应的方法相反。decodeURI()方法只对用encodeURI()方法替换的字符解码。例如,%20将被替换为空格,而%23不会被替换,因为它表示的是英镑符号(#),encodeURI()并不替换这个符号。同样的,decodeURIComponent()会解码所有encodeURIComponent()编码过的字符,意味着它将对所有的特殊值解码。例如:
这段代码输出两个值:
在这个例子中,变量uri存放的是用encodeURIComponent()编码的字符串。生成的值说明了应用两个解码方法时会发生的事情。第一个值由decodeURI()输出,把%20替换成空格。第二个值由decodeURIComponent()输出,替换所有的特殊。
这些URI方法encodeURI()、encodeURIComponent()、decodeURI()和decodeURICom- ponent()代替了BOM的escape()和unescape()方法。URI方法更可取,因为它们会对所有Unicode符号编码,而BOM方法只能对ASCII符号正确编码。尽量避免使用escape()和unescape()方法。
The last method is probably the most powerful method in the entire ECMAScript language, the eval() method. This method is like the entire ECMAScript interpreter, accepting one parameter, which is the ECMAScript (or JavaScript) string to be executed. For example:
This line of code is functionally equivalent to the following code:
When the interpreter finds an eval() call, it will interpret the argument as a real ECMAScript statement and insert it where the function is. This means that variables referenced inside the eval() call can be defined outside of the parameters:
Here, the variable msg is defined outside the context of the eval() call, and the warning still displays the text "hello world" because the second line of code will be replaced with a real line of code. Likewise, a function or variable can be defined inside an eval() call and then referenced in code outside the function:
Here, the function sayHi() is defined inside the eval() call. Because the call will be replaced with a real function, sayHi() can still be called on the next line.
This function is very powerful, but also very dangerous. Be extremely careful when using eval(), especially when passing it user-entered data. A malicious user may insert values that compromise the security of the site or application (called code injection).
Global object not only has methods, it also has properties. Remember those special values undefined, NaN and Infinity? They are all properties of the Global object. In addition, the constructors of all local objects are also properties of the Global object. The following table explains all properties of the Global object in more detail:
Attributes
|
Say Ming |
||||||||||||||||||||||||||||||||||||||
undefined | Literal of Undefined type | ||||||||||||||||||||||||||||||||||||||
NaN | Special numerical values that are not numbers | ||||||||||||||||||||||||||||||||||||||
Infinity | Special numerical value for infinity | ||||||||||||||||||||||||||||||||||||||
Object | Constructor of Object | ||||||||||||||||||||||||||||||||||||||
Array | Constructor of Array | ||||||||||||||||||||||||||||||||||||||
Function | Constructor of Function | ||||||||||||||||||||||||||||||||||||||
Boolean | Boolean constructor | ||||||||||||||||||||||||||||||||||||||
String | Constructor of String | ||||||||||||||||||||||||||||||||||||||
Number | Number’s constructor | ||||||||||||||||||||||||||||||||||||||
Date | Date’s constructor | ||||||||||||||||||||||||||||||||||||||
![]() |
Constructor of RegExp | ||||||||||||||||||||||||||||||||||||||
Error | Constructor of Error | ||||||||||||||||||||||||||||||||||||||
EvalError | Constructor of EvalError | ||||||||||||||||||||||||||||||||||||||
RangeError | Constructor of RangeError | ||||||||||||||||||||||||||||||||||||||
ReferenceError | Constructor of ReferenceError | ||||||||||||||||||||||||||||||||||||||
SyntaxError | Constructor of SyntaxError | ||||||||||||||||||||||||||||||||||||||
TypeError | Constructor of TypeError | ||||||||||||||||||||||||||||||||||||||
URIError | Constructor of URIError |

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version
