使用jquery工具提示时遇到问题。 我在DIV元素上加载了一些内容,当我将鼠标悬停在此DIV中加载的imagemap元素时,它会显示工具提示。 这工作正常,但是当我点击一些图像地图元素来加载新内容时,工具提示不会破坏。 我设法(在一些研究之后)进行工具提示搜索旧工具提示并销毁旧工具提示,但只有当我调用新的工具提示时。
我将展示一些代码。
这个DIV是收到的内容:
<div id="content">
<script type="text/javascript">$( "#content" ).load( "prefacio.html" );</script>
</tr>
此链接调用一个函数来加载新内容:
的onclick =&#34; abrirPag(&#39; somepage.html&#39;);&#34;
此功能加载新页面:
function abrirPag(valor){
var url = valor;
xmlRequest.open("GET",url,true);
xmlRequest.onreadystatechange = mudancaEstado;
xmlRequest.send(null);
if (xmlRequest.readyState == 1) {
document.getElementById("content").innerHTML = "<img src='images/loader.gif'>";
}
return url;
}
function mudancaEstado(){
if (xmlRequest.readyState == 4){
document.getElementById("content").innerHTML = xmlRequest.responseText;
$(document).ready(function(){
if (window.location.hash) {
var hash = window.location.hash
$('html, body').animate({
scrollTop: $(hash).offset().top - 60
}, 2000);
}
});
var nav = $('.content-nav');
if (nav.length) {
var contentNav = nav.offset().top;
}
}
最后,这个函数,我真正的问题开始了。
$(document).ready(function(){
$(document).tooltip({
track: true,
content: function () {
return $(this).prop('title');
},
show: null,
open: function(event, ui)
{
if (typeof(event.originalEvent) === 'undefined')
{
return false;
}
var $id = $(ui.tooltip).attr('id');
$('div.ui-tooltip').not('#' + $id).remove();
},
close: function(event, ui)
{
ui.tooltip.hover(function()
{
$(this).stop(true).fadeTo(200, 1);
},
function()
{
$(this).fadeOut('200', function()
{
$(this).remove();
});
});
}
});
在上面的例子中,如果我将鼠标悬停在标题元素上,我有一个带有标题内容的工具提示,但如果我点击此元素来调用新页面的加载,则工具提示仍然存在。
链接是这样的:
<area title="<b>Texte</b>:<br> Test" shape="rect" coords="7,7,109,40" href="#link1" onclick="abrirPag('somepage.html');">
当我调用$ abrirPag时,我需要一些东西,看看是否有任何工具提示打开,然后关闭,但我已经找到了解决方案,但是没有成功。
答案 0 :(得分:0)
使用
same-origin
取代
$(document).ajaxComplete(function()
答案 1 :(得分:-1)
您需要使用
.ajaxComplete
代替
.ready