如何在location.replace()方法中使用网址传递文件名

时间:2019-07-06 10:39:07

标签: javascript html

我想使用任何重定向页面方法将文件名作为实例传递给url。

Widget menubar = Center(
          child: Container(
            padding: const EdgeInsets.all(20),
            child: Row(
              children: <Widget>[
                // I want make some button here button number is 10
              ],
             ),//Row
            ),//Container
           );//Center

1 个答案:

答案 0 :(得分:0)

您可以执行类似的操作,就像在代码中一样,它使用window.location.replace创建模拟重定向。请注意,协议和域名之后,URL中保留的字符均经过URL编码以避免错误。

我在您的网址中添加了http,但是您可以将其更改为适当的协议:

<script>
           window.addEventListener("DOMContentLoaded", function() {

               var x = document.getElementById("demo").value;
               x = encodeURI("http://localhost:57168/Hoopweb_Viwer.aspx?scs=" +x);
               location.replace(x);
           });
 </script>