Posted in Javascript onOctober 28, 2016
如下所示:
<script> //普通方法 function add(a,b){ return a+b; } add(3,4); //使用json来定义函数,在里面可以定义多个函数 var method={ add:function(a,b){ return a+b; }, add2:function(a,b){ return a+b; }, add3:function(a,b){ return a+b; }, }; var temp = method.add2(31, 4); alert(temp); </script>
以上就是小编为大家带来的使用json来定义函数,在里面可以定义多个函数的实现方法全部内容了,希望大家多多支持三水点靠木~
使用json来定义函数,在里面可以定义多个函数的实现方法
- Author -
jingxian声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@