- 浏览: 778806 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (256)
- ssh (18)
- webservice (8)
- java基础 (38)
- j2EE方方面面 (17)
- 随意涂鸭!呵呵 (2)
- 数据库 (22)
- work (10)
- XML与XML解析 (9)
- 测试 (2)
- sso (1)
- ldap (6)
- java 模板技术 (4)
- 版本管理 (1)
- 每日小点滴 (26)
- javascript (26)
- Jakarta Commons (2)
- css (6)
- 设计 (3)
- Eclipse插件开发 (3)
- BAP (3)
- web控件 (2)
- java加密解密 (4)
- 调优 (6)
- 界面技术 (3)
- java多线程 (6)
- 互联网 (2)
- 日志管理 (4)
- java调度 (3)
- rest (0)
- Python (2)
- mobile (2)
- 2016的故事 (4)
- Docker (1)
- NOSQL_Hadoop (0)
最新评论
-
promiseloney:
这个女程序员厉害了。。。
JVM调优:GC 参数 -
zxjlwt:
可以通过WebService上传一个文件吗?素人派http:/ ...
webservice传送XML大小估算 -
liaoshaoyang:
写的不错嘛 可以做参考
权限管理设计一 -
aaaaaaaaabaas:
谢谢,对我有帮助
Apache Commons Configuration使用入门 -
Jack_Wilshere:
com.smartdot.pdm.business.corp. ...
java导出txt
Assigning a function to a variable with the Function constructor. Suppose you create the variable multiply using the Function constructor, as shown in the preceding section:
var multiply = new Function("x", "y", "return x * y")
This is similar to declaring the following function:
function multiply(x,y) { return x*y }
Assigning a function to a variable using the Function constructor is similar to declaring a function with the function statement, but they have differences:
- When you assign a function to a variable using var multiply = new Function("..."), multiply is a variable for which the current value is a reference to the function created with new Function().
- When you create a function using function multiply() {...}, multiply is not a variable, it is the name of a function.
Nesting functions. You can nest a function within a function. The nested (inner) function is private to its containing (outer) function:
- The inner function can be accessed only from statements in the outer function.
- The inner function can use the arguments and variables of the outer function. The outer function cannot use the arguments and variables of the inner function.
The following example shows nested functions: function addSquares (a,b) { function square(x) { return x*x } return square(a) + square(b) } a=addSquares(2,3) // returns 13 b=addSquares(3,4) // returns 25 c=addSquares(4,5) // returns 41 When a function contains a nested function, you can call the outer function and specify arguments for both the outer and inner function: function outside(x) { function inside(y) { return x+y } return inside } result=outside(3)(5) // returns 8
Specifying an event handler with a Function object.
The following code assigns a function to a window's onFocus event handler (the event handler must be spelled in all lowercase):
window.onfocus = new Function("document.bgColor='antiquewhite'")
If a function is assigned to a variable, you can assign the variable to an event handler. The following code assigns a function to the variable setBGColor.
var setBGColor = new Function("document.bgColor='antiquewhite'")
You can use this variable to assign a function to an event handler in either of the following ways:
document.form1.colorButton.onclick=setBGColor <INPUT NAME="colorButton" TYPE="button" VALUE="Change background color" onClick="setBGColor()">
Once you have a reference to a Function object, you can use it like a function and it will convert from an object to a function:
Event handlers do not take arguments, so you cannot declare any arguments in a Function constructor for an event handler. For example, you cannot call the function multiply by setting a button's onclick property as follows:
document.form1.button1.onclick=multFun(5,10)
frames[0].onfocus = new Function("document.bgColor='antiquewhite'")
解释:把一个Function给了一个事件,而这个Function定义时没有参数,只有方法体,这种情况是允许的,属于没有参数,只有方法体的方法。
发表评论
-
Dojo query 库
2016-11-01 15:42 312Dojo Query 库的核心是一个 dojo.query ... -
javascript创建对象的几种方式 .
2013-09-02 22:30 1223// 1. 工厂方法:能创建 ... -
javascript对象创建的五种方式
2013-09-02 22:27 931<html> <head> &l ... -
navigator对象介绍
2013-09-02 22:26 1085<html> <head> ... -
当执行打印预览window.close无效
2013-09-02 22:24 2037<html> <head> &l ... -
通过js encodeURIComponent传到服务器的乱码问题
2011-01-21 14:02 9928一、场景:最近在做一个微博项目,用过微博的人都知道,微博里有话 ... -
当session失效后,无论点击那个页面,都找到顶端页面,跳到登录页面。
2010-08-18 17:15 1306当session失效后,用户点击当前页面会跳到登录页面,如果用 ... -
javascript boolean判断
2010-06-29 11:20 1347<!DOCTYPE HTML PUBLIC " ... -
利用setTimeout方法控制JS中方法的执行顺序
2009-11-06 13:23 4960JS方面中有A和B方法,B必须在A执行完之后才能执行,怎么保证 ... -
利用冒泡排序法实现select option按中文排序组件
2009-11-06 13:14 1618/* *给当前的select元素排序, *@ param ... -
JS-中文排序
2009-10-30 14:35 1029<!DOCTYPE HTML PUBLIC " ... -
Jscript中window.setInterval和window.setTimeout的区别
2009-10-23 09:40 1047一、setTimeout setTimeout(表达式,延时 ... -
window.showModalDialog介绍
2009-10-21 16:12 4568window.showModalDialog的用法 基本介绍 ... -
改变select元素原来的事件属性,并加快捷键
2009-03-04 13:57 1767<select name="commonNat ... -
javascript 之---提交到一个新打开的页面
2009-02-23 15:00 1329window.open("",&qu ... -
Array 之 join() input()
2009-02-18 11:26 1062<html> <head> &l ... -
Array之sort()
2009-02-18 11:03 1221Syntaxsort(compareFunction) D ... -
js页面排序-----基础篇
2009-01-06 09:46 1948由于客户查询出来 ... -
Event/window.Event属性和方法
2009-01-04 10:57 3281一、event说明:event代表事件的状态,例如触发eve ... -
在javascript中如何屏幕HTML元素原有的事件,根据需要建立自己需要的事件
2008-12-30 14:06 1413<!DOCTYPE HTML PUBLIC " ...
相关推荐
理解Javascript Function与Object 在JavaScript中,Function和Object是两个非常重要的概念,它们之间存在着紧密的关系。在这篇文章中,我们将深入探讨Function和Object的关系,了解它们之间的联系和区别。 ...
postcss颜色功能 插件可将CSS颜色功能从...var colorFunction = require ( "postcss-color-function" ) // css to be processed var css = fs . readFileSync ( "input.css" , "utf8" ) // process css // set pres
具有从npm安装和使用软件包的能力相容性节点红色版本> 1.0安装从您的节点红色目录npm install node-red-contrib-function-npm用法function-npm节点的行为类似于普通功能节点,不同之处在于允许在块内的脚本内使用npm...
通过这种方式,`gulp-function` 提供了一种强大的方式来构建高度定制化的前端构建流程,允许开发者充分利用 JavaScript 的强大能力,实现更灵活、更高效的任务处理。 在实际开发中,`gulp-function` 可以结合其他 `...
Ajax-rebuild-js-function.zip,使用javascript,ajax代表异步javascript和xml。它是多种web技术的集合,包括html、css、json、xml和javascript。它用于创建动态网页,其中网页的小部分在不重新加载网页的情况下更改。
JavaScript 基础 - 定时器 JavaScript 中的定时器是指可以在指定时间执行某个函数或代码的机制。它可以分为两种:间隔型和延时型。间隔型定时器可以使用 `setInterval` 函数来实现,而延时型定时器可以使用 `...
es6-arrow-function, shorthand 箭头函数编译为 ES5. es6-arrow-function 编译使用箭头函数编写的JavaScript以使用ES5-compatible函数语法。 例如:[1, 2, 3].map(n => n * 2);编译为:[1, 2, 3
### JavaScript函数-深入解析与使用指南 #### 一、JavaScript函数的基本原理 JavaScript函数是一种能够封装特定任务的代码块,可以被重复调用以执行这些任务。这些函数可以通过接收参数来处理输入数据,并且通常会...
如:<script language="JavaScript">var i=0,s="",k=0;function foo(){for(j=0;j;j++){for(i=0;i;i++){s="string1";k=Math.floor(Math.random()*10);}for(i=20;i>9;i--){s="string2";k=i;}}}</script><br>经过工具...
### JavaScript中的Object与Function #### 一、引言 随着JavaScript的发展与标准化,这门语言已经成为Web开发领域不可或缺的一部分。然而,在深入学习JavaScript的过程中,不少开发者对于语言内部的一些概念仍感...
JavaScript-function-base函数基础.gif Javascript-operational-character运算符.gif JavaScript-process-statement流程控制.gif JavaScript-regular-expressions正则表达式.gif JavaScript-string-function字符串...
function range ( start , stop ) { let res = [ ] ; res . unshift ( start ) ; for ( let i = start ; i < stop ; i ++ ) { res . push ( start += 1 ) ; } return res ; } 现在,如果要生成2点之间的...
这在JavaScript中是非常有用的特性之一: ```javascript (function() { // 独立的作用域 })(); ``` 通过这种方式定义的函数形成了一个独立的作用域,其中的变量不会被外部访问到。 #### 五、作为选择器 在某些...
在JavaScript中,表达式与运算符是编程的基础,它们决定了代码如何计算和操作数据。下面将详细介绍这些知识点。 首先,表达式是JavaScript中的基本元素,它可以是常量、变量,也可以是运算的结果。例如,`100`、`...
### JavaScript 语法集锦知识点详解 #### 一、概述 JavaScript 是一种广泛应用于网页开发的脚本语言,它能够使网页具有动态交互功能。本文档将详细介绍一系列常用的 JavaScript 语法和方法,帮助开发者更好地理解和...
JavaScript应用实例-1箭头函数和function的this对比.js
"格式化-function与小括号间留空格。链式调用不换行"这一主题主要涉及JavaScript编程语言中的代码规范,包括函数调用时的空格使用以及链式调用的样式规则。 首先,我们来探讨函数调用时的小括号前后的空格问题。在...
function-plot是建立在d3.js之上的,因此了解d3的基本概念和API是使用function-plot的前提。 2. **function-plot安装与引入** 要在项目中使用function-plot,首先需要通过npm或CDN引入。对于npm用户,可以运行`npm...
阿里云功能计算无服务器插件此插件可在无服务器框架内启用Aliyun Function Compute支持。入门先决条件使用插件的Node.jsv8...─ package.json└── serverless.yml在您的服务中安装serverless-aliyun-function-compute
is-es6-generator-function 检查给定值是否为GeneratorFunction安装 npm i is-es6-generator-function --savenpm test用法有关更多用例,请参阅 var isGeneratorFunction = require ( 'is-es6-generator-function' )...