获取 HTTP 头以获取 HTML 中 content 属性的信息
使用 http-equiv 属性可以获取 HTTP 头以获取 HTML 中 content 属性的信息。
示例
你可以尝试运行以下代码来实现http-equiv 属性 −
<html> <head> <title>HTML http-equiv attribute</title> <meta name = "keywords" content = "HTML, meta tag, metadata" /> <meta name = "description" content = "Description of the document" /> <meta http-equiv = "refresh" content = "10" /> </head> <body style = "background-color:gray"> Document content goes here </body> </html>
广告