asp.net updatepanel 导致JS不能加载,而无法使用

时间:2023-03-09 18:01:03
asp.net updatepanel 导致JS不能加载,而无法使用

asp.net updatepanel 局部刷新,导致JS不能加载,而无法使用,而且 updatepanel会刷两次,郁闷的。

解决方法如下:

<script type="text/javascript" language="javascript">
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(function () {
// re-bind your jquery events here
$(document).ready(function () { //begin
var span = $("input[id*='txtSpan']");
span.focusout(function () { if (span.val() == 0) {
$("#spRule").show();
$("input[id*='btnSave']").attr("disabled","disabled");
}
else {
$("#spRule").hide();
$("input[id*='btnSave']").removeAttr("disabled");
}
});
//end });
}
);
</script>