2011-01-10 49 views

回答

1

你應該註冊更新面板客戶端事件的處理程序。

Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(onBeginRequest); 
function onBeginRequest(sender, args) { 
    var elem = args.get_postBackElement(); 
} 

elem是你需要的控件。更多信息MSDN

+0

非常感謝你。 – Thomas 2011-01-10 09:50:07