Why doesn't the pop up close when opened from inside an UpdatePanel
问题 JQuery (inside the head function in my webform): function DoThisEM() { centerPopupEM(); loadPopupEM(); } function DoThatEM() { disablePopupEM(); } var popupStatusEM = 0; //loading popup with jQuery magic! function loadPopupEM() { //loads popup only if it is disabled if (popupStatusEM == 0) { $("#backgroundPopupEM").css({ "opacity": "0.7" }); $("#backgroundPopupEM").fadeIn("slow"); $("#popupContactEM").fadeIn("slow"); popupStatusEM = 1; } } //disabling popup with jQuery magic! function