如何在javascript中检测/跟踪/检查回发(例如,在asp.net Page.isPostBack()中)?
有什么建议吗?
最佳答案
ASPX:
<input type="hidden" id="_ispostback" value="<%=Page.IsPostBack.ToString()%>" />
客户端脚本:
function isPostBack() { //function to check if page is a postback-ed one
return document.getElementById('_ispostback').value == 'True';
}
PS:我还没有测试过,但是之前做过类似的事情,并且它可以工作。