表格包含数字值,每个单元格都有自己的href
.
如果我像这样应用href:
nTd.click(function(e){
$(this).css("font-weight","bold");
e.stopPropagation();
location.href = 'http://google.com';
});
每次单击单元格重定向窗口,我都无法通过“ctrl + 单击”打开新选项卡。
如果我要添加TD
类似的内容'<a href="http://google.com"> 123123 </a>'
,那么对数字值进行排序就会中断,按字典顺序排列。