在html文件中使用我喜欢的Javascript重定向页面
window.location.href = "http://www.google.com/";
工作正常。但是当我在.aspx中尝试时,它无效 以下是我的代码。提前致谢
<head runat="server">
<script type="text/javascript">
function PageRedirect() {
window.location.href = "http://www.google.com/";
}
</script>
</head>
<body>
<form runat="server">
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="PageRedirect()"/>
</form>
答案 0 :(得分:7)
试试这个:
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="PageRedirect(); return false;"/>