码迷,mamicode.com
首页 > Web开发 > 详细

Js的执行

时间:2017-06-24 18:25:50      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:nbsp   image   .com   onclick   body   span   分享   click   str   

 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的执行

标签:nbsp   image   .com   onclick   body   span   分享   click   str   

原文地址:http://www.cnblogs.com/Cein/p/7073910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!