跳转方式

1、 html跳转
<a href="index.php?name=tom&age=20">跳转</a>

2、JS跳转
<script type="text/javascript">
location.href='index.php?name=tom&age=20';
location.assign('index.php?name=tom&age=20');
location.replace('index.php?name=tom&age=20');
</script>

3、PHP跳转
header('location:index.php?name=tom&age=22')
posted @ 2022-03-25 16:12  SHACK元  阅读(117)  评论(0编辑  收藏  举报