php echo显示警告消息

时间:2018-04-24 09:39:18

标签: alert message show

这是我的按钮触发警报

<div id="alert1" data-target="#alert1" class="qdr-alert alert bg-primary top left white">
                    <strong>Well done!</strong> You are using a stronger theme!
                </div>

                左上方             

但我不想按钮。我想在动作中显示警告页面打印警告信息以显示。

//Quadra Alert on page
    $('.qdr-alert-trigger').each(function(){
        var self = $(this),
            target = $(self).data('target'),
            timer;
        $(self).on('click', function(){
            clearTimeout(timer);
            $(target).fadeOut(0).stop().clearQueue();
            setTimeout( function(){$(target).fadeIn(300)},1);
            timer = setTimeout( function(){$(target).fadeOut(300);},3000);
        });
    });

我可以为直接显示提醒消息做些什么。只是我想在没有javascript的情况下使用它。我想直接打印消息。

0 个答案:

没有答案