我希望在单击这些链接时弹出来自 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');
}
}