我想在运行时通过 jQuery 有条件地更改我的 Cluetips 的背景图像。我使用'rounded'作为线索提示类。
我认为这可以解决问题:
$('.cluetip-rounded').css("background", "url(infobox_left.png)");
但是在 Chrome 开发者工具栏中,我可以看到 CSS 设置完全没有改变。
如何更改线索提示 CSS 设置?
最好的,大卫
我想在运行时通过 jQuery 有条件地更改我的 Cluetips 的背景图像。我使用'rounded'作为线索提示类。
我认为这可以解决问题:
$('.cluetip-rounded').css("background", "url(infobox_left.png)");
但是在 Chrome 开发者工具栏中,我可以看到 CSS 设置完全没有改变。
如何更改线索提示 CSS 设置?
最好的,大卫
用这个:
$('.cluetip-rounded').css("background-image", "url(infobox_left.png)");
并确保图像路径有效。
它应该工作。确保您有正确的图像路径。看看这个:http: //jsfiddle.net/DRN3P/
线索提示“克隆”隐藏的 div,确保在更改类或更改“克隆”内容后再次调用线索提示。