这是我的按钮触发警报
<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的情况下使用它。我想直接打印消息。