我只是试图通过.html文件打开google.com
。
当我打开此.html文件时,不会加载Google。
<!DOCTYPE html>
<a href="http://www.google.com">
答案 0 :(得分:3)
这应该可以解决问题:
<!DOCTYPE html>
<html>
<head>
<title>Google</title>
<meta http-equiv="refresh" content="0; url=http://www.google.com" />
</head>
</html>
答案 1 :(得分:0)
Anchor标签用作超链接。您必须手动单击它或编写一个脚本来帮您完成。
如果您想直接打开google
而无需用户操作,则可以使用元刷新。
<meta http-equiv="refresh" content="4;url=https://google.com" />
在这里,4
代表您刷新之前需要的时间(秒)。