Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Uniform 是一个用于样式化表单的 jQuery 插件。在我的应用程序中,我正在使用它,我必须关闭制服并再次打开它,我的意思是我需要重新启动它。
要在某些表单元素上打开制服的功能,请执行以下操作$("select, input, button, textarea").uniform();
$("select, input, button, textarea").uniform();
现在我需要关闭它,我的意思是我想要一个功能来回滚并恢复旧外观。
可以做到吗?谢谢。
您可以自行恢复原始外观(并取消绑定所有事件处理程序)uniform:只需使用它的restore方法。像这样:
uniform
$.uniform.restore();
这个方法也可以在元素集合上调用。