是否可以在alertify.js警报中嵌入HTML?

poc*_*ese 8 javascript jquery alert popup alertify

我想使用Alertify.js嵌入Qualtrics调查,但我不知道是否可以传入HTML代码段(可能是iframe?)而不仅仅是传递警报消息的文本.

有谁知道它是否可能或如何完成?

poc*_*ese 6

我找到了解决这个问题的方法,有点jQuery.触发警报后,请放置以下内容:

$('.alertify-message').append($.parseHTML('<whatever><html><you><want>'));
Run Code Online (Sandbox Code Playgroud)


小智 5

只需在消息中传递html。例如:

 alertify.error('<span> You should <a href="#">confirm</a> email </span>'); 
Run Code Online (Sandbox Code Playgroud)