Javascript
摘要: 我的文件结构如下:
---current 这个文件夹放html文件
|
|----jscript 这个文件夹放javascript文件
|
|----images 这个文件夹放图片,有图片icq01.gif、icq02.gif、google01.gif 等图片
阅读全文
摘要: JScript 中的 eval 函数
http://www.leftworld.net/online/winscript/html/js56jsmtheval.htm
检查 JScript 代码并执行.
eval(codeString)
必选项 codestring 参数是包含有效 JScript 代码的字符串值。这个字符串将由 JScript 分析器进行分析和执行。
说明
eval 函数允许 JScript 源代码的动态执行。例如,下面的代码创建了一个包含 Date 对象的新变量 mydate :
eval("var mydate = new Date();");
传递给 eval 方法的代码执行时的上下文和调用 eval 方法的一样.
VBScript 中的 eval 函数
http://www.yesky.com/imagesnew/software/vbscript/html/vsfctEval.htm
Eval 函数
计算一个表达式的值并返回结果。
<
阅读全文
摘要: // var delta=1
function reformPicture() {
if (image.width > 250 ) delta = - 1 ;
if (image.width < 160 ) delta = 1 ;
image.width += delta ;
image.height -= delta ;
setTimeout( " reformPicture() " , 25 ) ;
}
reformPicture() ;
阅读全文
摘要: var i = 0
var id1, id2 ;
function max() {
clearTimeout(id2) ; // 必须清除,不然图象会抖动
nLong = MyImg.style.pixelWidth += i ++
MyImg.style.pixelHeight = nLong * aaa
if (i < 20 ) id1 = setTimeout('max()', 100 );
}
function min() {
clearTimeout(id1) ; // //必须清除,不然图象会抖动
nLong = MyImg.style.pixelWidth -= -- i
MyImg.style.pixelHeight = nLong * aaa
if (i > 0 ) id2 = setTimeout('min()', 100 )
}
阅读全文