網址轉址
紀錄一下自己常用將使用者轉址的方式,基本上就是有些功能處理完後丟去其他地方使用。
html
content中的數字可以設定等待秒數。
<meta http-equiv="refresh" content="0;url=網址" />
js
document.location.href="網址";
php
header('Location: 網址');
exit();
紀錄一下自己常用將使用者轉址的方式,基本上就是有些功能處理完後丟去其他地方使用。
content中的數字可以設定等待秒數。
<meta http-equiv="refresh" content="0;url=網址" />
document.location.href="網址";
header('Location: 網址');
exit();