这是html代码
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript">
function func()
{
document.location.href="www.google.com"
}
</script>
</head>
<body>
<form id="form1" runat="server">
<input type="button" runat="server" onclick="func();" />
</form>
</body>
</html>
重定向无效
答案 0 :(得分:2)
因为它应该是window.location.href
。
参考: https://developer.mozilla.org/en-US/docs/DOM/window.location
答案 1 :(得分:2)
没有document.location
。
使用 window.location.href
或location.href
(我更喜欢后者:))