隱性轉發的優勢體現於無需跳轉和變動瀏覽器地址欄,即可實現轉發。
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>這個是網頁的標題</title>
</head>
<frameset framespacing="0" border="0" rows="0" frameborder="0">
<frame name="main" src="這里寫你要轉發的網址" scrolling="auto" noresize>
</frameset>
</html>
<frameset rows="100%">
<frame src="http://www.example.com/">
<noframes>
<body>Please follow <a href="http://www.example.com/">link</a>.</body>
</noframes>
</frameset>
