我有一个大表(24列)使用tablesorter插件,以节省一些空间,我使用垂直图像来显示标题内的标题。
我有一个点击事件附加到几个选定的图像,这将打开一个第二个表(通过jQuery对话框)旁边的标题标题被点击。我遇到的问题是,当我点击图像时,tablesorter也在对列进行排序(我不想发生这种情况)所以我试图找到一种方法来以某种方式禁用排序,但只有当我点击标题图片。
非常感谢任何帮助!
HTML代码:
<table class="tablesorter" id="sales">
<thead>
<tr>
<th class="sales header" id="th_1"><img alt="" src="name.png" id="Name" onclick="openHeaderGeneric(this)"></th>
<th class="sales header" id="th_2"><img alt="" src="date.png" id="Date" onclick="openHeaderGeneric(this)"></th>
</tr>
</thead>
</table>
这是JS:
function openHeaderGeneric(element)
{
// event triggered by clicking on img (title) not header (th)
var thId = $('#' + element.id).parent().attr('id');
var imageId = element.id;
var offset = $("th#" + thId).offset();
var top = offset.top;
var left = offset.left;
// get width of td cell (+8 for padding)
var tdWidth = thId.split('_');
tdWidth = tdWidth[1];
var width = $("td.col_" + tdWidth).width();
left = left + width + 8;
$.fx.speeds._default = 1000;
$("#" + imageId + "_wrapper").dialog(
{
autoOpen : false,
show : "slide",
hide : "slide",
width : "auto",
resizable : false,
modal : false,
position : [ left, top ]
});
if (!$("#" + imageId + "_wrapper").dialog("isOpen"))
{
$("#" + imageId + "_wrapper").dialog("open");
}
else if ($("#" + imageId + "_wrapper").dialog("isOpen"))
{
$("#" + imageId + "_wrapper").dialog("close");
}
}
答案 0 :(得分:1)
$('.header').unbind('click');
在定义点击事件之前添加此内容。或者,如果您只想为某些标题禁用它,请使用ID:
$('#th_1').unbind('click');
$('#th_2').unbind('click');
或者,如果你想更聪明一点:
jQuery.each($('.header img'), function(i, elem) {
if ($(elem).data('events') !== undefined && $(elem).data('events').click !== undefined) {
$(elem).parent().unbind('click');
}
});
我应该相信。