各种跳转
1、 在js中页面的跳转(直接跳转,不指定时间的跳转)
window.location.href='../login/index';
在js中指定时间的跳转(比如2秒后)
setTimeout("location.href='../login/index'",2000);
2 在php中不加超链接给出提示直接跳转
header('Location:../login/index');
echo "用户名或密码错误!2秒后将自动跳转至登录页面!";
echo "<meta http-equiv='refresh' content='2;url=../login/index'>";
3、 在php中不给提示,直接用超链接跳转
echo "插入数据成功" . "<br/>";
echo "<a href='../article/publish'>继续添加?</a>" . "<br/>";
echo "<a href='../article/list'>返回文章列表?</a>" . "<br/>";
4、 cookie()的设置
存
setcookie ( "username", $username, time () + 3600 * 24 * 10,'/','yyf.com' );
删
setcookie('username','');
setcookie('username',null);
setcookie('username','','time()-3600');
5、 如果post中没有相对应的视图(模板),请求路径可以这样写
<form action="<?php echo $url?>/article/addData" method='post'>
如果post中有相应的视图(模板),请求路径必须这样写
<form action="../article/lookfor" method='post'>
6、 onblur()失去焦点的前提是必须得到焦点focus()
<label style="display: none; color: red;" id="lab"><?php echo $error;?></label>
<script>
</srcipt>
Loading...