JavaScript
中的静态方法和实例方法与Java
几乎相同
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>静态方法和实例方法</title> <script src="https://code.jquery.com/jquery-1.12.4.js" integrity="sha256-Qw82+bXyGq6MydymqBxNPYTaUXXq7c8v3CwiYwLLNXU=" crossorigin="anonymous"> </script> <script> function AClass() { }
AClass.staticMethod = function () { alert("staticMethod"); }; AClass.staticMethod(); AClass.prototype.instanceMethod = function () { alert("instanceMethod"); }; var a = new AClass(); a.instanceMethod(); </script> </head> <body>
</body> </html>
|