jquery使用技巧

来源:互联网 发布:什么是优化教育 编辑:程序博客网 时间:2024/05/29 23:44
 使元素居于屏幕中间 \$(document).ready(function() {   
  1. jQuery.fn.center = function () {   
  2. this.css("position","absolute");   
  3. this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");   
  4. this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");   
  5. return this;   
  6. }   
  7. $("#id").center();   
  8. });