我有一个 php 类,用于在操作(发布表单/更新页面)当前刷新页面和 psts 1 或 0 之后显示成功消息或失败消息,然后是以下代码 - - 我怎样才能让它弹出起来并自动关闭...就像绿色的勾号或十字...假设需要使用 jquery - - 完全迷失在这里所以欢迎任何建议...谢谢
<?
$response = $_GET['response'];
if ($response == '0') {
echo"
<div class=\"error message\">
<h5>FYI, something just happened!</h5>
<p>This is just an info notification message.</p>
</div>
";
}
if ($response == '1') {
echo"
<div class=\"success message\">
<h5>FYI, something just happened!</h5>
<p>This is just an info notification message.</p>
</div>
";
}
?>