文章分类 -  Jquery

jquery 为table添加奇偶行颜色,鼠标移上效果
摘要:$(document).ready(function (){ $("tr:even").addClass("even"); $("tr:odd").addClass("odd"); $('table tr[class]').bind('mouseover mouseout', function () { $(this).toggleClass('on'); });}); 阅读全文
posted @ 2012-03-23 10:37 Berthing 阅读(547) 评论(0) 推荐(0)
jquery 无刷新分页
摘要:ajax远离乱码,请用Headerheader('Content-Type:text/html;charset=GB2312');(function(){var params = { 'replaceArea': 'pageajax',//分页替换内容部分的ID 'currentPage': 'currentpage',//显示当前页码部分的ID 'first' : 'first',//首页链接文本或按钮ID 'pre' : 'pre', 'n 阅读全文
posted @ 2011-02-12 14:00 Berthing 阅读(163) 评论(0) 推荐(0)