Jquery 代码
$(document).ready( function() {
var bheight = document.body.clientHeight;
$("#btnAdd").click(function() {
$("#brg").css("显示", "块");
$("#showdiv").css("display", "块");
$("#brg").css("height", document.body.scrollHeight) ;
$("#showdiv").css("top", document.body.scrollTop 100);
});
$("#close").click(function() {
$("#brg").css("display", "none");
$("#showdiv").css("display", "none");
});
});