0
noty({
layout: 'topRight',
type: 'alert',
text: 'Number of Alerts:'+count,
template: '<div class="noty_message"><span class="noty_text"></span></div>',
closeWith: ['button'],
dismissQueue: true, 
animation: {
    open: {height: 'toggle'},
    close: {height: 'toggle'},
    easing: 'swing',
    speed: 500 
    },
    timeout: false
});

通知をクリック可能なハイパーリンクにする方法はありますか。を検討しましたcallback onClose()が、通知を閉じたくないので使えません。コールバックはありonclickますか? または、別の方法で行う必要があります。テキストにハイパーリンクを挿入するようなものですか?

4

1 に答える 1

3

オプションを利用buttonsして、新しいウィンドウで URL を開くボタンを作成できます。

noty({
    layout: 'topRight',
    type: 'alert',
    text: 'Number of Alerts:'+count,
    template: '<div class="noty_message"><span class="noty_text"></span></div>',
    closeWith: ['button'],
    dismissQueue: true, 
    animation: {
        open: {height: 'toggle'},
        close: {height: 'toggle'},
        easing: 'swing',
        speed: 500 
    },
    timeout: false,
    buttons: [
        {
            addClass: 'css-class-for-the-btn', text: 'Link', onClick: function ($noty) {
                window.open("http://yoururl/");
            }
        }
    ]
});

また、クラスを定義することで、ボタンの CSS をカスタマイズできます。addClass

于 2014-03-06T10:13:51.880 に答える