使用元标记在HTML中自动刷新代码
我试图刷新相同的页面,但它不工作。 这是我的HTML代码:
<html> <head> <title>HTML in 10 Simple Steps or Less</title> <meta http-equiv=”refresh” content=”5" /> </head> <body> </body> </html>
它看起来像你可能粘贴这个(或使用像MS Word的文字处理器)使用一种双引号不能被浏览器识别。 请检查您的代码是否使用像这样的实际双引号"
,这与以下字符不同: ”
用这个replace元标记,然后再试一次:
<meta http-equiv="refresh" content="5" >
您使用的引号是问题:
<meta http-equiv=”refresh” content=”5" >
你应该使用"
<meta http-equiv="refresh" content="5">
你正在使用聪明的报价。 也就是说,不是使用标准的引号( "
)”,而是使用引号( ”
)。这会自动发生在Microsoft Word和其他文字处理器上,使事物看起来更漂亮,但也会损坏HTML。文本编辑器,如记事本或记事本2。
<html> <head> <title>HTML in 10 Simple Steps or Less</title> <meta http-equiv="refresh" content="5"> <!-- See the difference? --> </head> <body> </body> </html>
<meta http-equiv="refresh" content="600; url=index.php">
600是刷新周期之间的秒数。
尝试这个:
<meta http-equiv="refresh" content="5;URL= your url">
要么
<meta http-equiv="refresh" content="5">
试试这个标签。 这将每隔30秒刷新一次index.html
页面。
<meta http-equiv="refresh" content="30;url=index.html">
是的,问题是与你的双引号,我发现它匹配从这里.. http://codesupport.info/6-important-features-as-how-to-do-it-using-meta-tags/