我正在使用 HumaneJs http://wavded.github.com/humane-js/来显示通知。除了我似乎无法指定应该出现通知的 DIV 之外,一切都运行良好。此链接https://github.com/wavded/humane-js/pull/32中的讨论似乎表明这是可能的,但我无法让它工作
这是我的 HTML 代码
<button id="1">Display default notification</button><br/><br/><br/><br/>
<div id="container">
<button id="2">Display notification inside div</button><br/><br/>
</div>
这是Javascript
/*display notification in default position*/
$("#1").click(function() {
humane.log("Default notification");
});
/*display notification inside div*/
$("#2").click(function() {
var custom = humane.create({container: $("#container")[0]});
custom.log("Notification inside div");
});
我还设置了一个小提琴来演示这个问题
单击按钮似乎每次都在默认位置(右上角)显示通知,我无法在 DIV 内显示通知。任何帮助,将不胜感激。