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.
我在更新面板中有一个 asp 按钮,并且更新面板附带了一个更新进度。我想在按钮的客户端点击事件上限制页面回发。
对我有用的东西:
... OnclientClick="yourfunction(); return false;"
您可以进行 javascript 函数调用,返回 true 表示继续,返回 false 表示停止。
function AskFor() { if(continue check) return true; else return false; }
并在您的按钮上添加OnClientClick="return AskFor();"
OnClientClick="return AskFor();"