如何使用json表数据源进行bootstrap可点击

时间:2015-05-03 00:08:49

标签: php jquery json twitter-bootstrap-3

我在http://communitychessclub.com/games.php使用引导程序 - 这是一个显示国际象棋游戏记录的表格。我想要一行可点击,如:

<?php 
echo "<tr onclick=\"location.href='basic.php?game=$game'\" >"; 
?>

问题是加载和显示json表数据的代码不包括用于显示数据的“TR”;就是这样:

<table data-toggle="table" data-url="games.json" data-cache="false" 
data-search="true" data-show-refresh="true" data-show-toggle="true" 
data-show-columns="true">

<thead>
<tr>

<th data-field="game" class="hidden-xs hidden-sm hidden-md 
hidden-lg">#</th>
        <th data-field="Date">Date</th>
        <th data-field="ECO">ECO</th>
        <th data-field="Event">Event</th>
        <th data-field="WhiteElo">Rat.</th>
        <th data-field="White">White</th>
        <th data-field="BlackElo" >Rat.</th>
        <th data-field="Black">Black</th>
    </tr>
</thead>

</table>

我想获取游戏编号(data-field =“game”)和

<?php 
echo "<tr onclick=\"location.href='basic.php?game=$game'\" >"; 
?>

我该怎么办?

0 个答案:

没有答案