1

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

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

问题是消息显示链接,但是当我单击时。它什么也不做。

有任何想法吗?谢谢

4

1 回答 1

1

默认情况下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/

于 2013-10-30T11:26:02.097 回答