在增删改查中曾经用到过的页面跳转

来源:互联网 发布:淘宝分销订单怎么处理 编辑:程序博客网 时间:2024/06/05 12:41

1.表单的action动作

action = "xxxx.php"

2.PHP的header函数

header("location:xxxx.php")

3.通过javascript

<script>location.href = \"xxxx.php\"</script>