colorbox href到sweetalert

时间:2018-03-14 17:36:58

标签: html colorbox sweetalert2

我必须将colorbox弹出窗口更改为sweetalert2弹出窗口 我的问题是我在colorbox中使用href属性来获取HTML内容 我在sweetalert2

中找不到相同的方法

有解决方案吗?

由于

1 个答案:

答案 0 :(得分:1)

您可以使用jquery' s .get() Method来获取HTML数据。您需要做的是引用html文件。

您的javascript代码应如下所示。

  $.get("yourFile.html", function (data) {
     swal({
       html: data
     });
  });
祝你好运!