【发布时间】:2014-11-14 20:20:19
【问题描述】:
我在 http://communitychessclub.com/test.php 使用 dataTables 并获取如下所示的 ajax 数据:
{
"data": [
{
"game": "5086",
"date": "09/02/2013",
"event": "135th NYS Ch.",
"eco": "B08",
"white": "Jones, Igor",
"white_rating": "2393",
"black": "Smith, Efim",
"black_rating": "2268"
},
我有这个不完整的代码,并希望使表格行可点击,以便点击链接到'basic.php?game="data:game"'
**$("#cccr tbody").delegate("tr", "click", function(e) {
//rest of the code here
});**
我要问的是什么代码替换了“//这里的其余代码”?是否与:window.location.href 有关?
【问题讨论】:
标签: datatables