如何在另一个页面上重定向并从表中传递 url 中的参数?我在 tornato 模板中创建了这样的东西
<table data-role="table" id="my-table" data-mode="reflow">
<thead>
<tr>
<th>Username</th>
<th>Nation</th>
<th>Rank</th>
<th></th>
</tr>
</thead>
<tbody>
{% for result in players %}
<tr>
<td>{{result['username']}}</td>
<td>{{result['nation']}}</td>
<td>{{result['rank']}}</td>
<td><input type="button" name="theButton" value="Detail"
></td>
</tr>
</tbody>
{% end %}
</table>
我希望当我按下详细信息以重定向/player_detail?username=username
并显示有关该播放器的所有详细信息时。我尝试使用href="javascript:window.location.replace('./player_info');"
内部输入标签,但不知道如何将结果 ['username'] 放入。如何做到这一点?