1. 程式人生 > >設定table表格監聽

設定table表格監聽


 $(function(){


$("table td").click(function() {


var row = $(this).parent().index() + 1; // 行位置


var col = $(this).index() + 1; // 列位置


alert("當前位置:第"+row+"行,第"+col+"列")


});

});   

點選表格之後顯示位置