@H_301_0@本文实例讲述了jQuery实现网站添加高亮突出显示效果的方法。分享给大家供大家参考。具体如下:
@H_301_0@这段jquery代码演示了如何把整个页面遮罩起来,突出显示某些东西
<div class="jb51code">
<pre class="brush:js;">
$(function() {
var docHeight = $(document).height();
$("body").append("");
$("#overlay")
.height(docHeight)
.css({
'opacity' : 0.4,'position': 'absolute','top': 0,'left': 0,'background-color': 'black','width': '100%','z-index': 5000
});
});