不确定这是否是正确的地方..但是这里有。
我使用这个jquery插件:
http://akquinet.github.io/jquery-toastmessage-plugin/
它运作良好..但我只希望粘性消息显示关闭的gif,而不是消失的消息。
有谁知道怎么做?
非常感谢:)
答案 0 :(得分:1)
很抱歉看起来很快就发布了:(
更改此内容:
i=c("<div></div>").addClass("toast-item-close").prependTo(d).html(g.closeText).click(function(){c().toastmessage("removeToast",d,g)
});
到此:
if (g.sticky) {i=c("<div></div>").addClass("toast-item-close").prependTo(d).html(g.closeText).click(function(){c().toastmessage("removeToast",d,g)
}); }
似乎有效..