Jnotify jquery插件用于$ _Get消息

时间:2014-04-08 06:41:06

标签: javascript php jquery jnotify

我在使用此插件时遇到问题,我保存的每条消息都是全局变量,并希望在每个事务上调用带有该消息的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;

        }

    });

(当然不是点击功能)分别针对每个错误,成功和通知。 我该如何实现此功能。

1 个答案:

答案 0 :(得分:0)

function message ()

    {
        $.get("dashboard.php",
        {
            message:"Record Deleted Sucessfully"
        },
        function(data,status){
        });
    }

希望这会对你有所帮助。

您可以在成功时调用该message()函数,而不是PHP脚本。 以上功能将执行此操作:
它将继续显示此网址: dashboard.php?message =记录已成功删除

function(data,status){ });
这里的数据是上面url(dashboard.php)的返回数据。您只需显示它或对其执行任何操作即可。