0

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

重定向不起作用

4

2 回答 2

2

因为它应该是window.location.href

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

于 2013-02-28T09:16:50.267 回答
2

没有document.location

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

于 2013-02-28T09:17:37.117 回答