如何在另一页上重定向,并从表中URL传递参数?(How to redirect on another

2019-07-17 17:34发布

如何在另一页上重定向,并从表中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');" 输入标签内,但不知道如何把结果[“用户名”在如何做到这一点?

Answer 1:

设置用户名作为data-username属性的按钮,也是一类:

HTML

<input type="button" name="theButton" value="Detail" class="btn" data-username="{{result['username']}}" />

JS

$(document).on('click', '.btn', function() {

    var name = $(this).data('username');        
    if (name != undefined && name != null) {
        window.location = '/player_detail?username=' + name;
    }
});​

编辑:

此外,你可以简单地检查undefined && null使用:

$(document).on('click', '.btn', function() {

    var name = $(this).data('username');        
    if (name) {
        window.location = '/player_detail?username=' + name;
    }
});​

由于在此提到的答案

if (name) {            
}

将评估为true,如果值不是:

  • 空值
  • 未定义
  • 为NaN
  • 空字符串(“”)
  • 0

上述名单代表了ECMA / JavaScript的所有可能falsy值。



Answer 2:

做这个 :

<script type="text/javascript">
function showDetails(username)
{
   window.location = '/player_detail?username='+username;
}
</script>

<input type="button" name="theButton" value="Detail" onclick="showDetails('username');">


Answer 3:

绑定按钮,这是使用jQuery做:

$("#my-table input[type='button']").click(function(){
    var parameter = $(this).val();
    window.location = "http://yoursite.com/page?variable=" + parameter;
});


Answer 4:

下面是一个不依赖于JQuery的一种通用解决方案。 简单地修改了window.location的定义。

<html>
   <head>
      <script>
         function loadNewDoc(){ 
            var loc = window.location;
            window.location = loc.hostname + loc.port + loc.pathname + loc.search; 
         };
      </script>
   </head>
   <body onLoad="loadNewDoc()">
   </body>  
</html>


文章来源: How to redirect on another page and pass parameter in url from table?