jQuery qTip图像源的相对路径

时间:2014-12-17 10:42:47

标签: javascript jquery qtip

您好我的网络应用中有一个jQuery qTip工具提示,我正在尝试在工具提示中设置图像的相对路径。

我的代码是:

$('#behind-the-behaviour span[title]').qtip({
                content: { title: { text: "Behind the Behaviour" }, text: "<img src='~/Images/behindbehaviour.png'/>" },
                style: { border: { radius: 5 } },
                show: { effect: function () { $(this).show(); } },
                hide: { effect: function () { $(this).hide(); } },
                position: { my: 'rightTop ', at: 'left center', target: this, viewport: $(window) },
            });

它必须是相对的,因为这是由不同文件夹中的页面继承的母版页。当路径设置为“Images / behindbehaviour”时,对话框页面无法访问它

如何让jquery通过相对路径找到图像?谢谢!

1 个答案:

答案 0 :(得分:0)

尝试:

text: "<img src='/Images/behindbehaviour.png'/>"

没有波浪号(〜)

这适合我。