2024-08-04 11:00:12 | 我爱编程网
两个函数完全可以写成一个函数:
function del( $t = 1 ) {
if ( $t == 1 ) { //函数参数是1
//删除图片
} else { //否则
// 删除路径
}
}
//接下来是函数的调用
$T = $_GET['t']; //取得url的get参数
del( $T ); //调用函数
然后在按钮方面, 首先, 按钮的type属性改成button
然后给按钮添加一点击事件,比如:
<input type="button" value="删除图片" onclick="document.location='del.php?t=1'">
<input type="button" value="删除路径" onclick="document.location='del.php?t=2'">
我爱编程网(https://www.52biancheng.com)小编还为大家带来php文件中添加一个按钮 点击关闭当前页面调用什么函数的相关内容。
<?php2025-02-01 20:24:39
2025-02-12 03:21:37
2025-02-10 15:19:48
2025-01-28 17:58:32
2024-11-22 05:08:01
2024-09-10 08:50:00