Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在更新面板中放置一些控件时,单击触发控件按钮后样式会丢失。在 asyncpostback 之后似乎没有应用 css。请指教。谢谢你。
我假设您的 css 正在通过 javascript 或 jquery 应用于文档准备就绪。
.net 执行 ajax 请求时不会触发。您需要在“page_loaded”事件上重新应用样式
像这样
<script type="text/javascript"> Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(addCss); function addCss() { //do stuff } </script>