<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
var i=1;
window.onload = function()
{ node_name = document.body.firstChild;
node_name.setAttribute("src","images/sh_hero_1.jpg");
node_name.setAttribute("onclick","c(this)");
}
function c(q)
{
i++;
q.setAttribute("src","images/sh_hero_"+i+".jpg");
}
</script>
</head>
<body><img/></body>
</html>
node_name.setAttribute("onclick","c(this)");
中的this
工作原理是什么?为什么能把node_name
这个局部变量传出去?新人小白求轻拍。
萧十郎
相关分类