WEB开发网
开发学院网页设计JavaScript Javascript中Eval函数的使用说明 阅读

Javascript中Eval函数的使用说明

 2010-09-14 13:28:22 来源:WEB开发网   
核心提示:举个小例子:var the_unevaled_answer = "2 + 3";var the_evaled_answer = eval("2 + 3");alert("the un-evaled answer is " + the_unevaled_answ

举个小例子:

var the_unevaled_answer = "2 + 3";
var the_evaled_answer = eval("2 + 3");
alert("the un-evaled answer is " + the_unevaled_answer + " and the evaled answer is " + the_evaled_answer);

如果你运行这段eval程序, 你将会看到在JavaScript里字符串"2 + 3"实际上被执行了。所以当你把the_evaled_answer的值设成 eval("2 + 3")时, JavaScript将会明白并把2和3的和返回给the_evaled_answer。

这个看起来似乎有点傻,其实可以做出很有趣的事。比如使用eval你可以根据用户的输入直接创建函数。这可以使程序根据时间或用户输入的不同而使程序本身发生变化,通过举一反三,你可以获得惊人的效果。

在实际中,eval很少被用到,但也许你见过有人使用eval来获取难以索引的对象。文档对象模型(DOM)的问题之一是:有时你要获取你要求的对象简直就是痛苦。

例如,这里有一个函数询问用户要变换哪个图象:变换哪个图象你可以用下面这个函数:

function swapOne()
{
var the_image = prompt("change parrot or cheese","");
var the_image_object;
if (the_image == "parrot")
{
the_image_object = window.document.parrot;
}
else
{
the_image_object = window.document.cheese;
}
the_image_object.src = "ant.gif";
}

连同这些image标记:

[img src=http://tech.ddvip.com/2008-12/"/stuff3a/parrot.gif" name="parrot"]
[img src=http://tech.ddvip.com/2008-12/"/stuff3a/cheese.gif" name="cheese"]
请注意象这样的几行语句:

1 2  下一页

Tags:Javascript Eval 函数

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接