[JQuery]table 程序员文章站 2022-07-16 14:05:15 ... js 代码 <script type="text/javascript"> $(document).ready(function(){ $(".stripeMe tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");}); $(".stripeMe tr:even").addClass("alt"); }); </script> $('p') = find all paragraphs $('.whatever') = find everything with class="whatever" $('.stripeMe tr') = find all tr (table rows) inside an element with the "stripeMe" class In the code:$(".stripeMe tr").... find all rows of a table with class="stripeMe" the code:$(".stripeMe tr:even")......any table with class name "stripeMe" will be striped $('.whatever').mouseover() tells jQuery "Everything with class name 'whatever' will have a new onMouseover event 相关标签: jQuery JavaScript 上一篇: 理解Restful风格架构 下一篇: 如何让某一个窗口位于所有的窗口最上面 推荐阅读 jQuery及JS实现循环中暂停的方法教程 jquery调取json数据实现省市级联的方法教程 jQuery弹出框代码封装DialogHelper JQuery异步获取返回值中文乱码的解决方法 jQuery实现单击和鼠标感应事件 JavaScript开发中jQuery动画与特效详解 jquery实现拖拽调整Div大小 javascript编程常用函数:jQuery功能函数详解 jquery制作LED 时钟特效 C#实现的Table的Merge,以及实现Table的Copy和Clone