我已经处理了这个问题好几天但我无法找到解决方案。我有一个Javascript函数,在Ajax调用完成后生成HTML,我将这个函数称为:
$(document).ready(function() {
$("#list").change(function() {
reloadInfo($('#list').val());
});
reloadInfo($('#list').val());
});
我的功能是下一个:
function reloadInfo(id) {
var div = document.getElementById(id);
...
code += "<img id='led_" + res.id + "' src='green_led.gif' style='cursor: pointer' class='tooltipstered'>";
code += "<img id='" + res.id + "' src='mygraph.jpg'>";
...
div.innerHTML = code;
}
之后,我尝试使用Tooltipster来展示mygraph.jpg&#39;当我把鼠标放在&#39; green_led.gif&#39;上时,进入工具提示当我移出鼠标光标时,将图像隐藏起来。为此,我在$(document).ready():
中使用了下一个代码$(document).ready(function() {
$("#list").change(function() {
reloadInfo($('#list').val());
});
reloadInfo($('#list').val());
$("body").on('mouseover', '.tooltipstered', function(){
$(this).tooltipster({
trigger: 'custom'
}).tooltipster('open').tooltipster('content', 'MYcontent');
});
});
但它似乎不起作用。我已经阅读了Tooltipster文档,但是当我动态生成HTML代码时,我不知道自己做错了什么(当我尝试使用静态HTML时,它有效,但我做的有点不同) :
$(document).ready(function(){
$(".tooltipstered").tooltipster({
trigger: 'custom',
arrow: false
}).on('mouseover', function() {
$(this).tooltipster('instance').content("foo").open();
}).on('mouseout', function() {
$(this).tooltipster('instance').close();
})
});
<body>
<button id="1" class="tooltipstered" style="float: right">Hover1</button>
<button id="2" class="tooltipstered">Hover1</button>
</body>
问题在于我使用JavaScript生成HTML。我第一次把光标放在图像上我没有在浏览器控制台中出现任何错误,但第二次重复它我得到了这个错误:
<img id="led_27269" src="green_led.gif" style="cursor: pointer" class="tooltipstered">
如果有人知道我做错了什么,那将会有所帮助。非常感谢您提前!!
答案 0 :(得分:4)
两件事:
tooltipster
并在HTML内容更改时重新创建它们。tooltipster
方法应通过$(...).tooltipster(methodName, arg1, arg2,...)
完成。在这里,您应该查看文档中正确的方法名称和参数。因此,您应该像在$("body").on('mouseover' ...
中一样调用创建(没有方法名称)。娱乐:
$(document).ready(function(){
$(".tooltipstered").tooltipster({
trigger: 'custom',
arrow: false
}).on('mouseover', function() {
$(this).tooltipster('instance').content("foo").open();
}).on('mouseout', function() {
$(this).tooltipster('instance').close();
})
});
应移动:
function reloadInfo(id) {
$(".tooltipstered").tooltipster('destroy');
... your reloading code
$(".tooltipstered").tooltipster({
trigger: 'custom',
arrow: false
}).on('mouseover', function() {
$(this).tooltipster('instance').content("foo").open();
}).on('mouseout', function() {
$(this).tooltipster('instance').close();
});
}