使用选项时,Toastr不会触发

时间:2013-05-03 05:31:03

标签: javascript user-interface notifications toastr

我正在尝试使用toastr js library

我包括了toastr.js,toastr.css和toastr-responsive.css 这有效:

toastr.info("Hello world");

但这不起作用。我在浏览器控制台中没有收到任何错误:

toastr.options.positionClass = "toast-top-full-width";
toastr.info("Hello world");

原因是什么?

1 个答案:

答案 0 :(得分:0)

创造一个小提琴并告诉我你在做什么。

更新:

你不应该链接到github中的原始css和javascript。这些不是CDN,因此它们不是为了服务代码而设置的。您应该为项目提取代码或在Visual Studio中使用NuGet。

例如,如果您将CSS复制到JsFiddle CSS窗口中,这样可以正常工作: http://jsfiddle.net/7Ucj9/10/

要完成,这是我做的次要代码更改......但它与它无关

$(function () {

    toastr.info("Are you the 6 fingered man?");

    $("#foo1").click(function () {
        alert("test");
    });

    $("#foo2").click(function () {
        toastr.info("Are you the 6 fingered man?");
        console.log("hello");
    });
});