获取和设置元素的jQuery插件#样式.显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取和设置元素的jQuery插件#样式.显示相关的知识,希望对你有一定的参考价值。
Plugin to get and set Element#style.display (e.g. "none" or "")
$.fn.display = function(setTo) { if (setTo) { return this.each(function(i, el) { el.style.display = setTo; }); } if (!0 in this) { return false; } return this[0].style.display; };
以上是关于获取和设置元素的jQuery插件#样式.显示的主要内容,如果未能解决你的问题,请参考以下文章