jQuery实现链接的title快速出现的方法
具体代码如下所示:
<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"/> <title>login</title> <scripttype="text/javascript"src="jquery.min.js"></script> </head> <style> body{ margin:0; padding:40px; background:#fff; font:80%Arial,Helvetica,sans-serif; color:#555; line-height:180%; } p{ clear:both; margin:0; padding:.5em0; } #tooltip{ position:absolute; border:1pxsolid#333; background:#f7f5d1; padding:1px; color:#333; display:none; } </style> <body> <p><ahref="#"rel="externalnofollow"rel="externalnofollow"rel="externalnofollow"rel="externalnofollow"class="tooltip"title="这是我的超链接提示1">提示1</a></p> <p><ahref="#"rel="externalnofollow"rel="externalnofollow"rel="externalnofollow"rel="externalnofollow"class="tooltip"title="这是我的超链接提示2">提示2</a></p> <p><ahref="#"rel="externalnofollow"rel="externalnofollow"rel="externalnofollow"rel="externalnofollow"title="这是自带提示1">自带提示1</a></p> <p><ahref="#"rel="externalnofollow"rel="externalnofollow"rel="externalnofollow"rel="externalnofollow"title="这是自带提示2">自带提示2</a></p> <script> $(function(){ $("a.tooltip").mouseover(function(e){ vartooltip="<divid='tooltip'>"+this.title+"</div>"; $("body").append(tooltip); $("#tooltip") .css({ "top":e.pageY+"px", "left":e.pageX+"px" }).show("fast"); }).mouseout(function(){ $("#tooltip").remove(); }); }); </script> </body> </html>
jQuery事件-pageY属性
显示鼠标指针的位置
show()方法
显示所有隐藏的<p>元素:
注意:show()适用于通过jQuery方法和CSS中display:none隐藏的元素(不适用于通过visibility:hidden隐藏的元素)。
JQuery中这个function(e)那个e是什么意思?
回答一:e是事件,在firefox中只能在事件现场使用window.event,所以只有把event传给函数使用。为了兼容FF和其它浏览器,一般会在函数里重新给e赋值:
e=window.event||e;
也就是说,如果window.event存在,则该浏览器支持直接使用window.event,否在就是不支持,不支持就使用传进来的e。
回答二:事件对象event和我们普通写的<inputtype="text"onclick="aaa(event)">中的这个event一模一样
jquery里边的事件绑定函数中的参数e都是在框架中给处理好了的兼容各种浏览器。
以上所述是小编给大家介绍的jQuery实现链接的title快速出现,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!