首页 > 其他 > 详细

页面传递参数

时间:2021-02-27 09:42:51      阅读:30      评论:0      收藏:0      [点我收藏+]

 

登录页面 login

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>登录页面</title>
</head>
<body>
<form action="index.html" method="get">
    <input type="text" name="user">
    <input type="submit" value="登录">
</form>
</body>
</html>

接收页面 index

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>index</title>
</head>
<body>

<div></div>
<script>
    // 1 先去掉问号  substr
    var params = location.search.substr(1);
    console.log(params); // user=libai
    // 2 通过等号分割字符串
    var arr = params.split(=);
    console.log(arr);// ["user", "libai"]
    //取出值赋值给页面上
    var div = document.querySelector(div);
    div.innerHTML = arr[1] + 欢迎您;
</script>
</body>
</html>

 

页面传递参数

原文:https://www.cnblogs.com/fuyunlin/p/14454741.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!