效果图:
编写JQUERY插件如下:
;(function($) {
$.fn.extend({
"alterBgColor":function(options){
//设置默认值
option=$.extend({
odd:"odd",
even:"even",
selected:"selected"
},options); //注意这个options 同上面的function(options)中的option是同一个对象
//隔行变色
$("tbody>tr:enev",this).addClass(option.even);
$("tbody>tr:odd",this).addClass(option.odd);
//单击行变色
$('tbody>tr',this).click(function(){
var hasSelected = $(this).hasClass(option.selected);
$(this)[hasSelected?"removeClass":"addClass"](option.selected)
.find(":checkbox").attr('checked',!hasSelected);
});
$("tbody>tr:has(:checked)",this).addClass(option.selected);
return this; //返回this,使方法可链
}
});
})(jQuery);
二、应用JQUERY插件
$(function(){
//按默认类
$("#table2").alterBgColor()
.find("th").css("font-size","18");
//自定义类,给定值;
$("#table1").alterBgColor({
odd:"odd1",
even:"even1",
selected:"mselected"
}).find("th").css("font-size","18");
})
三、两个不同的表格结构:
四、样式如下:
就此结束,希望大家都给 me--评论评论,谢谢!
如果不明白请与我(王锋 QQ:155259396)联系.
(function($){
$.fn.extend({
"SetTableBgColor":function(options){
//设置默认样式值
option=$.extend({
odd:"odd",//奇数行
even:"even",//偶数航
selected:"selected",//选中行
over:"over"//鼠标移动上去时
},options);//此处options与function里的参数为同一个对象
//隔行换色
$("tbody>tr:even",this).addClass(option.even);
$("tbody>tr:odd",this).addClass(option.odd);
//单击行变色
$("tbody>tr",this).click(function(){
$("tbody>tr").removeClass(option.selected);
//var hasSelected=$(this).hasClass(option.selected);//返回true或false 查询是否已经包含点击状态下的样式
$(this).addClass(option.selected);//给选中行添加样式 [hasSelected?"removeClass":"addClass"]根据是否包含移除和添加样式
});
//鼠标移动上去变色
$("tbody>tr",this).mouseover(function(){
$(this).addClass(option.over);
});
//鼠标移出时变回原来的样式
$("tbody>tr",this).mouseout(function(){
$(this).removeClass(option.over);
});
return this;//返回this,使方法可链 注意 这里必须返回 否则无法直接的调用方法
}
});
})(jQuery);//这个地方(jquery)必须加上,不然会报错
//调用方法
// $(".TableList").SetTableBgColor({
// odd:"",
// even:"alt",
// selected:"selected",
// over:"over"
// });
/201012/yuanma/SetTableBgColor.rar
Stellungnahme:Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn