有很多代码,所以我想用文字简短地解释一下这个问题。我有一个母版页,其中包括对 javascript 文件的所有引用,并且有使用母版页的页面。我在我的页面中使用更新面板,在更新面板内有一些表单,包括具有回发功能的表单(即下拉列表)。问题是当状态发生变化并发生部分回发时,由于这些 javascripts 而具有某些功能和效果的表单会失去所有功能。任何帮助,将不胜感激。
问问题
2255 次
1 回答
6
这是因为在使用更新面板返回部分内容后,您需要重新初始化 javascript。这是一个一般的例子
<script type="text/javascript">
// if you use jQuery, you can load them when dom is read.
$(document).ready(function () {
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_initializeRequest(InitializeRequest);
prm.add_endRequest(EndRequest);
// Place here the first init
});
function InitializeRequest(sender, args) {
}
function EndRequest(sender, args) {
// after update occur on UpdatePanel re-init what you need
}
</script>
相关问题:
Asp.Net UpdatePanel in Gridview Jquery DatePicker
How to get Id update panel that initial a request in javascript
net 4 之后你也可以简单的使用该pageLoad
函数,类似于 OnLoad 函数,只不过是由 asp.net 处理,在第一次页面加载时调用,也是在每次 ajax 更新后调用。
function pageLoad()
{
// init here your javascript
// This is called when the page load first time
// and called again each time you have an Update inside an UpdatePanel
}
参考: http: //msdn.microsoft.com/en-us/library/bb386417 (v=vs.100).aspx
于 2013-02-08T09:57:34.687 回答