jQuery setTimeout传递字符串参数报错的解决方法
当你打算调用一些jquery代码显示隐藏的一个元素,并调用settimeout()在一段延时之后设置其html的内容:
整个页面的代码是这样的.
. 代码如下:
<span style="font-size:18px;"><html>
<head>
<title></title>
</head>
<body>
<a href="#" id='heihei' onclick="shownext('i am veinei ')">show next</a>
<a href="#" id="log" style="display:none" >yes,i am the next </a>
<script type="text/javascript" src="jquery-1.10.2.min.js"></script>
<script type="text/javascript">
function shownext(text){
settimeout("$('#log').show().text(text)",1000);
}
</script>
</body>
</html>
</span>
.show()确实调用成功了.但是.text()调用失败了.console显示 text未定义.
对于这个问题,我确实没有找到更好的答案...我想是不是jquery对这个传入settimeout()函数的内容做了修改导致变量失效.
我紧接着做了下一个实验.
. 代码如下:
<span style="font-size:18px;"><html>
<head>
<title></title>
</head>
<body>
<a href="#" id='heihei' onclick="shownext('i am veinei ')">show next</a>
<a href="#" id="log" style="display:none" >yes,i am the next </a>
<script type="text/javascript" src="jquery-1.10.2.min.js"></script>
<script type="text/javascript">
function shownext(text){
settimeout("alert(text)",1000);
}
</script>
</body>
</html>
</span>
我要看看是不是确实是jquery出了问题.得到的是同样的错误.
后来找了本书看了看.发现了问题的所在.
settimeout() 接受一个字符串参数时,它执行于全局作用域,也就是说,它位于任何函数之外.最简单的修复手段就是使用一个局部函数(匿名函数)来解决这个问题.
. 代码如下:
<span style="font-size:18px;"><html>
<head>
<title></title>
</head>
<body>
<a href="#" id='heihei' onclick="shownext('i am veinei ')">show next</a>
<a href="#" id="log" style="display:none" >yes,i am the next </a>
<script type="text/javascript" src="jquery-1.10.2.min.js"></script>
<script type="text/javascript">
function shownext(text){
settimeout(function(){$('#log').show().text(text);},1000);
}
</script>
</body>
</html>
</span>
成功解决这个问题.