如何在uniform(jquery)中保留一些输入元素并提交无样式的按钮?
Uniform 是一个表单样式插件。 我在我的新网站上使用这个。这真的很好并且工作完美,但是我有一个网站搜索,我想在其中放置我自己的 css 样式。 我如何让这些字段不被统一样式化,以便它们可以被CSS样式化。 ???
请帮忙../
通过类似的方法解决了这个问题
$(function(){
$("input, input:file, select, checkbox").uniform();
});
Uniform is a form styling plugin.
I am using this on my new website. This is really good and working perfect but I have a site search where I want to put my own css style.
How do I leave those fields unstyled by uniform so they can be styled by css. ???
Please help../
Solved it by something like
$(function(){
$("input, input:file, select, checkbox").uniform();
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其添加到页面
或
从页面动态删除 css
add this to page
or
dynamically remove css from page
我遇到了这个问题并找到了更新的答案。
来自 https://github.com/pixelmatrix/uniform
I came across this question and found an updated answer.
From https://github.com/pixelmatrix/uniform