pageLoad
次の関数を使用します。
function pageLoad(sender, args) {
InitialiseSettings();
}
function InitialiseSettings(){
// replace your DOM Loaded settings here.
// If you already have document.ready event,
// just take the function part and replace here.
// Not with document.ready
$(element).slideUp(1000, method, callback});
$(element).slideUp({
duration: 1000,
easing: method,
complete: callback});
}
または、「endrequest」イベントハンドラーを.add_endRequest()
次のように追加してみてください。
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(InitialiseSettings)
編集:
コードをからに移動してから、イベントハンドラーとして登録することをお勧めdocument.ready
しますInitialiseSettings()
。pageLoaded
コード例
Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(InitialiseSettings)