为了账号安全,请及时绑定邮箱和手机立即绑定

js 如何调用 php

js 如何调用 php

hhhzihao2 2016-03-29 20:27:57
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />    <title>Document</title></head><body><?phpecho "<meta charset='utf-8'>";$d=scandir("./");echo "<table width='600' border='1'>            <tr>                <td>id号</td>                <td>文件名</td>                <td>编辑</td>            </tr>";for($i=2,$bb=count($d);$i<$bb;$i++){    echo "<tr>                <td>".$i."</td>                <td>".$d[$i]."</td>                <td>                    <a href='./index.php?mz=".$i."' onclick='ounis()'>删除</a>                </td>            </tr>";}echo "</table>";?><script>function ounis(){    if(confirm('确认删除吗')){    <?php        if(isset($_GET['mz']) && !empty($_GET['mz'])){        if(is_dir($d[$_GET['mz']])){            rmdir($d[$_GET['mz']]);            header('Refresh: 1; url=./');        }else{            unlink($d[$_GET['mz']]);            header('Refresh: 0; url=./');        };        };    ?>        }else{        alert('message');    };};</script><!-- <script>    function iii(){        if(confirm('确认删除吗')){        <?php ounis()?>    }else{        alert('你取消了删除');location.href='./genggai.php';    }    }</script> --></body></html>
查看完整描述

3 回答

?
鉁碏眼偂亽

TA贡献11条经验 获得超2个赞

用ajax提交

查看完整回答
反对 回复 2016-03-30
?
乔帮主

TA贡献184条经验 获得超67个赞

在火狐浏览器下,用firebug调试吧

查看完整回答
反对 回复 2016-03-30
  • 3 回答
  • 0 关注
  • 1656 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信