我在使用这个插件时遇到问题,我保存我的每条消息都是全局变量,并且想在每个事务上调用 jquery 函数,即添加、编辑、删除。这是我在成功事件中所做的
$GLOBALS['info_message']="Record Deleted Sucessfully";
$loc = $request->homeURL.'dashboard.php?message='.$GLOBALS['info_message'];
header("Location: $loc");
但我想通过这个 jquery 函数显示该消息(在 url 中)
$("a").click(function(e){
e.preventDefault();
switch ($(this).attr('class'))
{
case 'success' : jSuccess('Congratulations, a success box !!',{
VerticalPosition : 'center',
HorizontalPosition : 'center'} );
break;
case 'notice' : jNotify('Notification : <strong>Bold</strong> !'); break;
case 'error' : jError('ERROR : please retry !'); break;
}
});
(当然不是点击功能)分别为每个错误,成功和通知。我怎样才能实现这个功能。