<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
<title>无标题文档</title>
</head>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#links a").click(function(){
$("#links a").each(function(i,dom){
$(dom).removeAttr("style")
})
$(this).attr("style","background-color:#F00")
})
})
</script>
<body>
<div id="links">
<a href="javascript:">1111111</a><br />
<a href="javascript:">2222222</a><br />
<a href="javascript:">3333333</a><br />
<a href="javascript:">4444444</a><br />
<a href="javascript:">5555555</a><br />
<a href="javascript:">6666666</a><br />
<a href="javascript:">7777777</a><br />
<a href="javascript:">8888888</a><br />
</div>
</body>
</html>
<a></a>表示一个超链接标签 点击它就会跳转到某个页面href="index.html" 表示要跳转的页面 当点击时就会跳转到index.html这个页面
onmouserover是一个事件 当鼠标经过这个超链接的时候就会触发后面的动作alert('welcome');
alert('welcome')是javascript里面的一个函数 意思是弹出对话框 对话框的内容是welcome
return false的意思就是返回false 在这里没有多大意义
不知道够不够详细
欢迎分享,转载请注明来源:优选云