1

我希望在单击这些链接时弹出来自 toastr 的通知,但没有任何反应

编辑:这是完整代码的 jsfiddle http://jsfiddle.net/XaVcR/ 我不确定我是否正确包含了 toastr 虽然 Success .js

toastr.options.closeButton = true;
toastr.options.positionClass = "toast-bottom-left";

$(document).ready(function() {
    $('#success').click(notification('success', 'this was a success!'));
});

function notification( type, message ) {
if( type == 'success' ) {
    toastr.success(message,'<i>Success</i>');
} else if( type == 'error' ) {
    toastr.error(message,'Error');
} else if( type == 'warning' ) {
    toastr.warning(message,'Warning');
} else {
    toastr.info(message,'Information');
}   
}
4

1 回答 1

2

从问题:

    $('#success').click(notification('success', 'this was a success!'));

这应该是:

$('#success').click(function() {
    notification('success', 'this was a success!');
});

你的 JSFiddle 有:

$('#success').click(function() {
    notification('success', 'this was a success!'));
});

其中,))在中间行的末尾是一个语法错误。

于 2014-03-14T03:17:28.703 回答