想当年,Ajax席卷Web开发界的时候,Javascript技术就再一次被聚焦,上一次聚焦恐怕要追溯到它出生那一天了。没有JavaScript经验的年轻人或者初学者,多数被这门轻量级语言搞晕。现在jQuery出现了,第一次听说它是从一个年轻人朋友那里得知的。据说在JavaScript基础上再上一层楼,不仅功能强大了,也降低了学习的门槛,让我联想到从汇编语言到C的跨越。据说微软已经决定将其加到Visual Studio中了,jQuery团队奖金肯定会很丰厚。看看人家官网上是怎么说的:
jQuery is designed to change the way that you write JavaScript.
受不了诱惑,于是不顾年迈,依然开始小试了一下jQuery。
jQuery官网[url]http://jquery.com/[/url],目前最新版本1.2.6,还在高频度的更新中。
下面是一段摘自社区一位网友的示例,作为我的第一个jQuery例子:
<!--
Document : 双色表格
Created on : 2008-10-28, 19:23:56
Author : Administrator
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<script src="js/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){ //这个就是传说的ready
$(".stripe tr").mouseover(function(){
//如果鼠标移到class为stripe的表格的tr上时,执行函数
$(this).addClass("over");}).mouseout(function(){
//给这行添加class值为over,并且当鼠标一出该行时执行函数
$(this).removeClass("over");}) //移除该行的class
$(".stripe tr:even").addClass("alt");
//给class为stripe的表格的偶数行添加class值为alt
});
</script>
<style type="text/css">
th {
background:#0066FF;
color:#FFFFFF;
line-height:20px;
height:30px;
}
td {
padding:6px 11px;
border-bottom:1px solid #95bce2;
vertical-align:top;
text-align:center;
}
td * {
padding:6px 11px;
}
tr.alt td {
background:#ecf6fc; /*这行将给所有的tr加上背景色*/
}
tr.over td {
background:#bcd4ec; /*这个将是鼠标高亮行的背景色*/
}
</style>
</head>
<body>
<table class="stripe" width="50%" border="0" cellspacing="0" cellpadding="0">
<!color="#008000">--用class="stripe"来标识需要使用该效果的表格-->
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>QQ</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jerry</td>
<td>30</td>
<td>2551577</td>
<td>[email]wangjr@stditbase.com[/email]</td>
</tr>
<tr>
<td>Jerry</td>
<td>30</td>
<td>2551577</td>
<td>[email]wangjr@stditbase.com[/email]</td>
</tr>
<tr>
<td>Jerry</td>
<td>30</td>
<td>2551577</td>
<td>[email]wangjr@stditbase.com[/email]</td>
</tr>
<tr>
<td>Jerry</td>
<td>30</td>
<td>2551577</td>
<td>[email]wangjr@stditbase.com[/email]</td>
</tr>
<tr>
<td>Jerry</td>
<td>30</td>
<td>2551577</td>
<td>[email]wangjr@stditbase.com[/email]</td>
</tr>
<tr>
<td>Jerry</td>
<td>30</td>
<td>2551577</td>
<td>[email]wangjr@stditbase.com[/email]</td>
</tr>
</tbody>
</table>
</body>
</html>
运行结果就是个隔行变色的表格,并且响应mouseover和mouseout事件。
另外,jQuery还有配套的plugin库和ui库,使原本复杂的JavaScript应用变得简单强大起来。
很好,很强大。jQuery,我很看好你哦。
共同学习,写下你的评论
评论加载中...
作者其他优质文章