chenxuhua

隐性转发的优势体现于无需跳转和变动浏览器地址栏,即可实现转发。

<!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>

分类:

技术点:

相关文章:

  • 2021-12-19
  • 2022-12-23
  • 2021-10-22
  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-10
  • 2022-01-13
  • 2021-11-22
  • 2022-02-09
  • 2021-10-21
  • 2021-12-14
  • 2022-01-06
相关资源
相似解决方案