首先,您需要使用您的函数扩展 jQuery 库。例如:
jQuery.fn.extend({
changeColumn: function(columnName) {
但是,您的代码仍然存在一些其他问题。例如,您似乎没有result
在该命名空间内指定变量,并且您的选择器$('table tr')
正在查看整个 DOM 中的所有表行。
我不建议你在最后一次尝试中这样做,但为了教你一些关于 jQuery 扩展的知识,我编写了下面的示例代码:
// Create the changeColumnColor function
jQuery.fn.extend({
changeColumnColor: function (color) {
$(this).css('background-color', color);
}
});
$(document).ready(function () {
// Make the table a flexigrid
$('#testTable').flexigrid();
// Call your custom function
$('#testTable td.firstName').changeColumnColor('red');
});
JSFiddle:http: //jsfiddle.net/markwylde/Jk6ew/
但是,我仍然建议您考虑扩展实际的 flexigrid 插件本身,使用任何现有功能,或者使用更简单的单线解决方案:
$('#testTable td.firstName').css('background-color', 'red');
或者,如果您不能提供表类并且不知道列的内容:
$('#testTable td:first-child').changeColumnColor('red');
$('#testTable td:nth-child(3)').changeColumnColor('red');
如果颜色是静态的,另一种选择是更改您的 CSS。
除了您在下面的评论之外,您还可以执行以下操作,这将与 flexigrid 当前的标准/命名约定保持一致。
(function($) {
$.fn.flexChangeColumnColor = function (tableHeader) {
// Get the column index we're changing
idx = ($(this).parents(".flexigrid:eq(0)").find("th").filter( function() {
return $(this).text() === tableHeader;
}).index());
// Make the changes
$('td:nth-child(' + (idx+1) + ')', this).css('background-color', 'red');
}
})(jQuery);
$(document).ready(function () {
$('#testTable').flexigrid();
$('#testTable').flexChangeColumnColor('Test Col 3');
});
HTML 稍作更改以进行演示,因此请参阅更新:JSFiddle:http: //jsfiddle.net/markwylde/Jk6ew/1/