0

我正在使用window.open方法在 myhtml 中打开一个新网页。但是当我在 Firefox 中运行它时,它会重新加载同一页面。但它适用于 Chrome 和 Safari。这是我的 html 和 javascript 片段。我正在使用Python Flask framework模板Jinja。我也尝试使用location.replace而不是window.open

        </div>
        <form name="items">
            <script type="text/javascript" language="javascript">
                function getdetails(name){
                    window.open("/details?name="+name,"_self")
                }
            </script>
            <table id="main" align="center" class="table table-striped table-bordered" >
                <thead>
                <tr>
                    <th> <strong> SNo </strong></th>
                    <th> <strong> name </strong></th>
                    <th> <strong> item </strong></th>
                    <th> <strong> Total numbers </strong></th>
                    <th> <strong> size </strong></th>
                </tr>
                </thead>
                {% set count = 1 %}
                <tbody id="tablebody">
                {% for i in rows %}
                    {% for name,values in i.iteritems() %}
                        <tr>
                            <td style="text-align: center"> {{ count }}</td>
                            <td> <a href=# id=link onclick="getdetails('{{ name }}');"> {{ name }} </a> </td>
                            {% for j in values %}
                                <td>  {{ j }}  </td>
                            {% endfor %}
                        </tr>
                    {% endfor %}
                    {% set count = count + 1 %}
                {% endfor %}
                </tbody>
            </table>
        </form>
        </div>
4

1 回答 1

0

尝试使用 window.location.href 而不是 window.open,location.href 是属性而不是方法,因此您必须以不同的方式调用它,但它确实像页面重定向一样工作,尽管我会尝试弄清楚window.open 出了什么问题 - 这是更“正确”的方式。

 window.location.href = 'http://www.google.com';

由于您的问题有点不清楚,如果您要在新选项卡中打开页面,请在 window.open 方法中将 _self 更改为 _blank。

 window.open("/details?name="+name,"_blank");
于 2013-10-05T04:05:08.313 回答