html中如何在页面跳转中传递参数
html中页面跳转值需要将一些参数传递到另一个页面。
实现思路:
将参数放在跳转url中,在跳转后的html中获取url中的参数。
实现代码:
a.html:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>A页面</title>
</head>
<body>
<div>这是A页面</div>
<div>
<!-- 参数直接拼接到url上 -->
<a href="b.html?param1=aa¶m2=bb">访问b页面</a>
</div>
</body>
<script type="text/javascript">
window.location.href='b.html?param1=aa¶m2=bb¶m3=cc¶m4=dd';
</script>
</html>
b.html:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>B页面</title>
<