JS 實現點擊a標籤的時候讓其背景更換

點擊a標籤的時候給其換背景的方法有不少,在本文將爲你們介紹下js是如何實現的,感興趣的朋友不要錯過
代碼以下:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script type=text/javascript src="alabel.js"></script>
<style type="text/css">
.curr{blue;display:inline;}
</style>
unity3d http://www.unitymanual.com
</head>
<body>
<div class="clMenu">
<span><a href="#">1</a></span>
</div>

</body>
</html>

在alabel.js中:
代碼以下:

window.onload = function ()
{
var aspan = document.getElementsByTagName("span");
var i = 0;
for (i = 0; i < aspan.length; i++)
{
aspan[i].onclick = function ()
{
for (i = 0; i < aspan.length; i++) aspan[i].className = "";
this.className = "curr";
};
}
};
javascript

相關文章
相關標籤/搜索