我已經在OnPreRender()方法內部將下面的代碼添加到MOSS 2007 Web部件。Javascript Anchor跳轉到頂部問題
if (!Page.ClientScript.IsClientScriptBlockRegistered("jump_to_anchor_JS"))
{
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "jump_to_anchor_JS", "window.location.hash=\"anchor\";",true);
}
頁面加載後,跳轉到特定的錨點,然後跳回到頁面的頂部。 這已經在IE8,Firefox,Chrome和Safari中以相同的行爲進行了測試。
有沒有想法?
這是什麼問題? – 2010-08-11 20:19:51
如前所述,頁面不會停留在我想要的錨處,但會跳回到頁面的頂部。 – madatanic 2010-08-11 20:27:12