Tag: Web
All the articles with the tag "Web".
前端文档查询:MDN Web 文档 (Mozilla)
Published: at 03:17 AMMDN Web 文档 (Mozilla) 是一个查找前端开发相关资料的优秀资源。该文档提供了丰富的 Web 技术信息,涵盖 HTML、CSS、JavaScript 等方面。
解决 iframe 中的 X-Frame-Options 问题
Published: at 03:17 AM项目中使用 iframe 加载另一个页面时遇到问题,页面无法加载,报错原因是 X-Frame-Options: deny,表示该页面不允许在 frame 中展示。解决方法是联系后端修改 HTTP 头 X-Frame-Options 设置,将其值设置为 'sameorigin' 或 'allow-from <origin>'。