网址重定向无法在javascript中工作

时间:2013-02-28 09:16:08

标签: javascript html

这是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>

重定向无效

2 个答案:

答案 0 :(得分:2)

因为它应该是window.location.href

参考: https://developer.mozilla.org/en-US/docs/DOM/window.location

答案 1 :(得分:2)

没有document.location

使用 window.location.hreflocation.href(我更喜欢后者:))