Js的执行

Posted Cein

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Js的执行相关的知识,希望对你有一定的参考价值。

 1 <html>
 2 <head>
 3     <title>测试启动</title>
 4 </head>
 5 <body>
 6     <input type="button" onclick="result.init3()" value="Test" />
 7     <input type="button" id="test1" value="Test1" />
 8     <script type="text/javascript">
 9         var result = function () {
10             var init1 = function () {
11                 alert(1);
12             };
13             var init2 = function (obj) {
14                 alert(obj);
15             };
16             var init5 = function () {
17                 document.getElementById("test1").onclick=function(){
18                     alert(5);
19                 }
20             }
21             return {
22                 init: function () {
23                     init1();
24                     init2(2);
25                     init5();
26                 },
27                 init3: function () {
28                     alert(3);
29                 },
30                 init4: function () {
31                     alert(4);
32                 }
33             }
34         }();
35         window.onload = function () {
36             result.init();
37         }
38     </script>
39 </body>
40 </html>

页面加载弹出1,2

 

点击test1按钮,弹出5

 

以上是关于Js的执行的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——JS中的面向对象编程

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

VSCode自定义代码片段9——JS中的面向对象编程

Chrome-Devtools代码片段中的多个JS库

js代码片段: utils/lcoalStorage/cookie

js常用代码片段