0 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 |
<script type="text/javascript"> function test(){ var d, ds, w1 = $('.div1').width(), w2 = $('.div2').width(); if(w1 > w2){ d = w1 - w2; ds = '减'; }else{ d = w1 + w2; ds = '加'; } return { //注意下面分隔的逗号 a:d, b:ds } } //取值 fun = new test(); alert(fun.a + '=<<初始化>>=' + fun.b); //在其它函数中使用此值 function testS(){ alert(fun.a + '=<<函数>>=' + fun.b); } testS(); //在JS事件中使用此值 $('.div3').click(function(){ alert(fun.a + '=<<点击>>=' + fun.b); }) </script> |
十
31