博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Javascript脚本 :Function 对象的定义和使用
阅读量:5029 次
发布时间:2019-06-12

本文共 405 字,大约阅读时间需要 1 分钟。

javascript  Function 对象的定义

 创建函数的语法:var myFunction=new Function(arg1,arg2,...agrN,body);agrN 为函数的参数,body为函数执行

 

//自定义函数,判断函数是否存在,不存在则创建新 函数            if (typeof window.$sliderProcess == 'undefined') {                window.$sliderProcess = new Function('obj1', 'obj2', 'alert(obj1+obj2);');            }            window.$sliderProcess('1', '2');

返回 ‘12’。

 

转载于:https://www.cnblogs.com/dragon-L/p/3312268.html

你可能感兴趣的文章
css选择器
查看>>
photoplus
查看>>
Python 拓展之推导式
查看>>
[Leetcode] DP-- 474. Ones and Zeroes
查看>>
80X86寄存器详解<转载>
查看>>
c# aop讲解
查看>>
iterable与iterator
查看>>
返回顶部(动画)
查看>>
webpack+react+antd 单页面应用实例
查看>>
Confluence 6 SQL Server 数据库驱动修改
查看>>
Confluence 6 通过 SSL 或 HTTPS 运行 - 备注和问题解决
查看>>
【47.76%】【Round #380B】Spotlights
查看>>
【topcoder SRM 702 DIV 2 250】TestTaking
查看>>
【codeforces 796B】Find The Bone
查看>>
vim配置高亮显示
查看>>
docker 挂载目录挂载不上**
查看>>
写让别人能读懂的代码
查看>>
步步为营-60-代码生成器
查看>>
Git 基本操作
查看>>
CentOS7 防火墙设置
查看>>