弹出窗口的信息鼠标在超链接



我想显示联系信息与链接联系我们页面上的鼠标在超链接就像stackoverflow(鼠标在用户名)和gmail(点击在用户名)。下面是最新更新的代码。

<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/start/jquery-ui.css" />
<script>
$('#open').mouseenter(function() {
    $('#dialog_content').dialog('open');
});
$('#dialog_content').mouseleave(function() {
    $('#dialog_content').dialog('close');
});
var posX = $('#open').offset().left;
var posY = $('#open').offset().top;
console.log(posX,posY);
$('#dialog_content').dialog({
    autoOpen: false,
    open: function() {
        closedialog = 1;
        $(document).bind('click', overlayclickclose);
    },
    focus: function() {
        closedialog = 0;
    },
    close: function() {
        $(document).unbind('click');
    },
    buttons: {
      /*  
      Ok: function() {
            $(this).dialog('close');
        }
        */
     },
    show: {
            effect: 'fade',
            duration: 800
        },
    hide: {
            effect: 'fade',
            duration: 800
        },
    position: [posX,posY+25],
    resizable: false
});
</script>
<style>
.ui-dialog-titlebar {display:none;}
#other_content {width:200px; height:200px;background-color:grey;}
#dialog_content{display:none;}
</style>
<div id="dialog_content">bla bla bla</div>


<div id="open">CONTACT US</div>

我得到的错误

Uncaught TypeError: Cannot read property 'left' of undefined

检查此选项:

jsfiddle.net/3mxGM/4/

它创建了一个jQuery模态窗口,里面的信息div id为dialog_content。你可能需要数据库中的动态内容。无论如何,这应该为您想要的工作。

html:

<div id="dialog_content">
Here you can write the info to show up in the modal window.<br /><br />
If you know what AJAX is, could be a good idea to use it to query your database and get the info from there.</div>
<a href="#" id="open">Open dialog</a>
jQuery:

$(document).ready(function(){
$('#open').mouseenter(function() {
$('#dialog_content').dialog('open');
});
$('#dialog_content').mouseleave(function() {
$('#dialog_content').dialog('close');
});
var posX = $('#open').offset().left;
var posY = $('#open').offset().top;
$('#dialog_content').dialog({
autoOpen: false,
focus: function() {
    closedialog = 0;
},
close: function() {
    $(document).unbind('click');
},
buttons: {
  /*  
  Ok: function() {
        $(this).dialog('close');
    }
    */
 },
show: {
        effect: 'fade',
        duration: 800
    },
hide: {
        effect: 'fade',
        duration: 800
    },
position: [posX,posY+25],
resizable: false
});
});
css:

.ui-dialog-titlebar {display:none;}

如果你正在寻找一个更简单的代码弹出工具提示,我很喜欢这个自定义版本:

http://devseo.co.uk/examples/pure-css-tooltips/

如果这对你来说太花哨了,它只是在这个更基本的版本之上的一些css3过渡,在这里解释得很好:

http://sixrevisions.com/css/css-only-tooltips/

最新更新