Jquery.Messager插件

Jquery.Messager插件

右下角弹出窗口

1.关于页面过长,弹出页面无法在右下角

var topHeight = document.documentElement.scrollTop + document.documentElement.clientHeight – this.layer.height;

top:topHeight +”px” 就可以解决

2. 不随鼠标下移

$(window).scroll( function() {

  var topHeight = document.documentElement.scrollTop + document.documentElement.clientHeight – this.layer.height;

  $(”#message”).css(”top”,topHeight+”px”);

});

就可以解决

DEMO 下载