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.
我有一个名为 home.jsp 的 jsp。单击此 jsp 中的“立即激活”按钮,将显示一个灯箱。
这个灯箱有 2 个按钮“激活”和“删除”。
当我点击“激活”按钮时,一项服务正在被激活。成功激活后,页面会重新加载并显示 home.jsp。
现在我想在发生这种情况时显示警报。谁能帮我解决这个问题?
您的 home.jsp 页面应该排队一个 JavaScript 片段,该片段会在页面加载后立即运行(并且一旦它被激活)。我建议使用 jQuery,这将使这更容易。这是一个肮脏的例子:
<html> <head> ... <script type="text/javascript"> jQuery().ready(window,function(){ alert("your account is activated"); }); </script> ... </head> <body> ...