0
私のウェブサイトの通知アラートを設定する必要があります。私はこの単純なnotification scriptを使用しています。私はこのような私のウェブサイトでそれをテストしている。通知アラートが機能しない
<div id="notifications">
<div class="alert alert-danger" role="alert">
<a class="button close" style="padding-left: 10px;" href="#">×</a>
<i class="fa fa-info-circle "></i>
Thanks
</div>
</div>
スタイル
#notifications {
cursor: pointer;
position: fixed;
right: 0;
z-index: 9999;
bottom: 0;
margin-bottom: 22px;
margin-right: 15px;
max-width: 300px;
}
スクリプト
$(document).ready(function() {
Notify = function(text, callback, close_callback, style) {
var time = '10000';
var $container = $('#notifications');
var icon = '<i class="fa fa-info-circle "></i>';
if (typeof style == 'undefined') style = 'warning'
var html = $('<div class="alert alert-' + style + ' hide">' + icon + " " + text + '</div>');
$('<a>',{
text: '×',
class: 'button close',
style: 'padding-left: 10px;',
href: '#',
click: function(e){
e.preventDefault()
close_callback && close_callback()
remove_notice()
}
}).prependTo(html)
$container.prepend(html)
html.removeClass('hide').hide().fadeIn('slow')
function remove_notice() {
html.stop().fadeOut('slow').remove()
}
var timer = setInterval(remove_notice, time);
$(html).hover(function(){
clearInterval(timer);
}, function(){
timer = setInterval(remove_notice, time);
});
html.on('click', function() {
clearInterval(timer)
callback && callback()
remove_notice()
});
}
});
通知があるため、CSSスタイリングで正しく表示されています。しかし、スクリプトは動作していません。通知で閉じるアイコンをクリックすると、終了していません。私はページをリロードするとき、それは(自動クローズも動作していない)にとどまっています何が私のスクリプトで欠けている?
_Scriptは、あなたがこれを詳しく説明してもらえworking_ではないでしょうか? –
ここにあいまいな問題があります...タイトルは通知が機能していません....最後の文章はそうです。 – charlietfl
cssのため通知アラートが表示されています。しかし、私は閉じるアイコンをクリックして閉じることはできませんし、それはページのままです。 – Janath