一些实用的jQuery代码片段收集(2)


//写成了插件形式
(function ($) {
jQuery.fn.center = function () {
this.css('position', 'absolute');
this.css('top', ($(window).height() - this.height()) /2 +$(window).scrollTop() + 'px');
this.css('left', ($(window).width() - this.width()) / 2 + $(window).scrollLeft() + 'px');
return this;
}
})(jQuery);
$(document).ready(function () {
//调用
$("#somediv").center();
});


4.jQuery 判断图像是否被完全加载进来

复制代码 代码如下:


$("#demoImg").attr("src", "demo.jpg").load(function() {
alert("图片加载完成");
});


如果你有什么实用的 jQuery 代码片段,欢迎在 jQuery学习上和大家分享!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdfypz.html