我查到的资讯是onload只会在第一次加载时呼叫function
但我程式码打这样时
<div>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click"
Text="Button" />
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
<script type="text/javascript">
function WinOnResize() {
document.getElementById("Button1").click();
}
window.onload = WinOnResize
</script>
</div>
他却会不断刷新页面(就看到画面一直闪一直重复读取)
ps.按钮按下的功能只是改变label的text内容
想问一下我是哪里错了呢?