1
我有一個巨大的表格,我希望能夠點擊並轉到另一個頁面。但是,我不想讓第一個和最後一個點擊。所以它的一切都介於兩者之間。jQuery點擊通過排除某些單元格的表格行
$(".dataTable td").click(function(){
window.location.href = "LINK";
});
乾杯
我有一個巨大的表格,我希望能夠點擊並轉到另一個頁面。但是,我不想讓第一個和最後一個點擊。所以它的一切都介於兩者之間。jQuery點擊通過排除某些單元格的表格行
$(".dataTable td").click(function(){
window.location.href = "LINK";
});
乾杯
用途:
$('.dataTable td:not(:first-child, :last-child)').click(function(){
window.location.href = "LINK";
});
$(".dataTable td").not(':first-child, :last-child').on('click', function(){
window.location.href = "LINK";
});
這是怎麼回事是在支持CSS3或通用的解決方案瀏覽器? –