我有一张大桌子(大约 500 行和 7 列)。我的代码只需要检查我单击的表格单元格(它将类“保留”添加到单击的单元格,该类执行一些简单的边框操作)。
它在 Firefox 和 Opera 上运行顺利,但在 Chrome 上运行很糟糕(我的意思是我必须等待大约一秒钟才能改变单元格的边框) - 你能建议我解决它的方法吗?
第一个 IF 用于其他一些检查,但它只是检查这个特定单击单元格的状态。
$("td").click( function()
{
if($(this).attr('system') != 1)
{
if($(this).attr("reserved") != "1" && $(this).attr("reserved") != "2")
{
if($(this).attr("_checked")=="1")
{
$(this).addClass("reserved"); // here it changes border color
}
}
}