$(function(){ //留言模块 $("
") .appendTo("body") .css({position:"absolute",zIndex:1,right:"0px",top:200}) .show() .load("/?module=service&action=gbook",function(){ $(this).bind_verify(); $(".close",this) .click(function(){ $(this).parents(".autoscroll").remove(); }); }); //留言模块 $("") .appendTo("body") .css({position:"absolute",zIndex:1,left:"0px",top:200}) .show(); //拖动屏幕动作 $(window) .scroll(function() { // 页面发生scroll事件时触发 $(".autoscroll").each(function(){ //$(this).animate({top:$(document).scrollTop()-$(this).height()+$(this).attr("_height")},20); }); }); });