码迷,mamicode.com
首页 > 其他好文 > 详细

eval() 函数

时间:2015-05-01 11:50:52      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

<html>
<body>

<script type="text/javascript">

eval("x=10;y=20;document.write(x*y)")
document.write("<br />")

document.write(eval("2+2"))
document.write("<br />")

var x=10
document.write(eval(x+17))
document.write("<br />")

eval("alert(‘Hello world‘)")

</script>

</body>
</html>

eval() 函数

标签:

原文地址:http://www.cnblogs.com/caiyongxi/p/4470459.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!