编写php页面实现点击跳转能从1.php跳转到2.php
时间: 2023-08-15 17:03:07 浏览: 85
您可以在1.php页面中使用以下代码实现从1.php跳转到2.php:
```php
<?php
// 跳转到2.php页面
header("Location: 2.php");
exit();
?>
```
注意:该代码必须放在PHP标记之前,否则会引发错误。同时,2.php页面必须存在并且在同一目录下。
相关问题
编写php页面实现点击写着“跳转到2”的按钮能从1.php跳转到2.php,点击写着“跳转到3”的按钮能实现从1.php跳转到3.php
可以使用超链接的方式实现页面跳转,具体代码如下:
```html
<!--1.php-->
<!DOCTYPE html>
<html>
<head>
<title>页面跳转</title>
</head>
<body>
<button onclick="location.href='2.php'">跳转到2</button>
<button onclick="location.href='3.php'">跳转到3</button>
</body>
</html>
```
在这个例子中,我们使用了`location.href`来指定跳转的页面。当点击“跳转到2”的按钮时,会跳转到2.php页面;当点击“跳转到3”的按钮时,会跳转到3.php页面。
编写php页面实现点击写着“跳转”的按钮能从1.php跳转到2.php
您可以在1.php页面中添加以下代码,来创建一个指向2.php页面的超链接,当用户点击“跳转”按钮时,页面将自动引导到2.php页面。
```php
<!DOCTYPE html>
<html>
<head>
<title>跳转页面</title>
</head>
<body>
<a href="2.php">跳转</a>
</body>
</html>
```
这样就可以实现从1.php跳转到2.php。
阅读全文