CONTENT="[ช่วงเวลาให้รอก่อนทำการ Redirect หน่วยเป็นวินาที];URL=[ใส่ URL ที่ต้องการ Link ไปหาที่นี่]"
หากต้องการให้ web page ของเรา Refresh หน้าทุกๆ 1 นาทีก็สามารถเซตได้ตามตัวอย่าง code ข้างล่าง code ต้องวางอยู่ระหว่าง tag <head> กับ </head> นะครับ
Code :
<META HTTP-EQUIV="Refresh" CONTENT="60;URL=http://www.yourname.com"> |
การ Redirect ด้วย Javascript เพียงแค่ใส่ URL ให้ถูกต้องหน้า web ของเราก็จะ Link ไปสู่ URL ที่เรากำหนดเอง
Code :
<html> <head> <script langquage='javascript'> window.location="http://www.yourdomain.com/"; </script> </head></html> |
ยังมีรูปแบบ code javascript การ Redirect URL อื่นอีกซึ่งให้ผลการทำงานเหมือนกัน
Code :
<html> <head> <script langquage='javascript'> window.location.href = "http://www.yourdomain.com/"; </script></head></html> |
No comments:
Post a Comment