JavaScript function calls
There are 4 ways to call JavaScript functions.
The difference between each method lies in the initialization of this.
this Keywords
Generally speaking, in Javascript, this points to the current object when the function is executed.
Note that this is a reserved keyword, you cannot modify the value of this. |
Calling JavaScript functions
In the previous chapters we have learned how to create functions.
The code in the function is executed after the function is called.
Call as a function
Instance
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <p> 全局函数 (myFunction) 返回参数参数相乘的结果: </p> <p id="demo"></p> <script> function myFunction(a, b) { return a * b; } document.getElementById("demo").innerHTML = myFunction(10, 2); </script> </body> </html>
Run instance»
Click" Run instance" button to view the online instance
The above functions do not belong to any object. But in JavaScript it is always the default global object.
The default global object in HTML is the HTML page itself, so the function belongs to the HTML page.
The page object in the browser is the browser window (window object). The above functions will automatically become functions of the window object.
myFunction() and window.myFunction() are the same:
Instance
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <p>全局函数 myFunction() 会自动成为 window 对象的方法。</p> <p>myFunction() 类似于 window.myFunction()。</p> <p id="demo"></p> <script> function myFunction(a, b) { return a * b; } document.getElementById("demo").innerHTML = window.myFunction(10, 2); </script> </body> </html>
Running Instance»
Click the "Run Instance" button to view the online instance
##This is a common method for calling JavaScript functions, but It is not a good programming habit | Global variables, methods or functions can easily cause naming conflict bugs. |
---|
Global objectWhen the function is not called by its own object, the value of
this will become global object.
In a web browser, the global object is the browser window (window object). The value returned by this instancethis is the window object:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <p>在 HTML 中 <b>this</b> 的值, 在全局函数是一个 window 对象。</p> <p id="demo"></p> <script> function myFunction() { return this; } document.getElementById("demo").innerHTML = myFunction(); </script> </body> </html>
Running instance »Click the "Run Instance" button to view the online instance
The function is called as a global object and will Make the value of | this a global object. Using the window object as a variable can easily cause the program to crash. |
---|
##The function is called as an object method, which will cause# The value of ##this | becomes the object itself. |
---|
If the
newkeyword is used before the function call, the constructor is called function. This looks like a new function is created, but in fact JavaScript functions are recreated objects:
Instance<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文网(php.cn)</title>
</head>
<body>
<p>该实例中, myFunction 是函数构造函数:</p>
<p id="demo"></p>
<script>
function myFunction(arg1, arg2) {
this.firstName = arg1;
this.lastName = arg2;
}
var x = new myFunction("John","Doe")
document.getElementById("demo").innerHTML = x.firstName;
</script>
</body>
</html>
Run Instance»Click the "Run Instance" button to view the online instanceThe call to the constructor will create a new object. The new object inherits the constructor's properties and methods.
The | this keyword in the constructor has no value. The value of this is created when the object (new object) is instantiated when the function is called. |
---|
You can set the value of | this through the call() or apply() method, and it will exist as New method call on the object. |
---|