我一直在尝试在使用notyjs(http://needim.github.io/noty/)发送的消息中放置链接。我不想使用一个noty按钮,只是一个链接。

var n = noty({text: 'Hi there click, <a href="http://somehere.com">here</a> to continue'});


问题是该消息与链接一起显示,但是当我单击时。它什么也没做。

有任何想法吗?谢谢

最佳答案

默认情况下,noty在单击容器中的任何位置时关闭。为防止这种情况,您应该更改closeWith参数。修改后的代码如下。

var n = noty({text: 'Hi there click, <a href="http://somehere.com">here</a> to continue',closeWith:['button']});


JS小提琴:http://jsfiddle.net/nGDvU/

09-17 02:50