0

我正在使用Bootstrapx-Clickover

为点击运行此 javascript:

var message = "Access Forbidden.</br> <a href=\"/contact/access\">Request Access!</a>";
$("#spec").clickover({placement:'top', title: "Sensitive information", content: message, width: 170, height: 110});

HTML 内容不会呈现:

在此处输入图像描述

它曾经与bootstrap 2.1一起使用,但现在我升级到2.2

有任何想法吗?

4

1 回答 1

1

本期所述,您需要添加html: true点击选项。

$("#spec").clickover({placement:'top', title: "Sensitive information", content: message, width: 170, height: 110, html: true});
于 2013-01-25T18:22:17.920 回答