62,266
社区成员
发帖
与我相关
我的任务
分享
function fnLoad()
{
if(window.document.all["dvBody"] == null)
return;
window.document.all["dvBody"].scrollTop = window.document.getElementById("hdnTopScroll").value;
}
protected void Page_Load(object sender, EventArgs e)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "__post", "<script>alert('ddd');</script>");
}
//在这里把alert('ddd')替换为你想运行的JS语句就可以了
if (this.hdnTopScroll.Text.Trim() != string.Empty)
{
string c = @"<Script language='JavaScript'>";
c += "window.document.getElementById('" + hdnTopScroll + "').value = window.document.all['" + dvBody + "'].scrollTop;";
c += "</Script>";
Response.Write(c);
}