我在firefox、safari 和ie9 中使用jquery 编写了一些代码。但铬不喜欢它。chrome 控制台中没有明显的消息。我正在碰壁,希望有人能有所启发。脚本只是显示/隐藏一些工具提示。有任何想法吗?在这里摆弄,更改的代码仍然没有改变行为。
$(document).ready(function(){
//custom toolTip Written by CASherwood but not working in ie9/chrome
var ShowId;
var id;
var contentholder = $(".contentBox");
var toolTip = $(".info");
var idHashString = '#info';
var idString = 'id';
function showToolTip(name, id){
id = name + id;
$(id).fadeIn(1000);
}
function hideToolTip(name, id){
id = name + id;
$(id).fadeOut(1000);
}
$(toolTip).mouseover(function(){
ShowId = $(this).attr(idString);
showToolTip(idHashString, ShowId);
});
$(contentholder).mouseleave(function(){
ShowId = $(this).find('.info').attr(idString);
hideToolTip(idHashString, ShowId);
});
});