Jquery UI 表单主题
我不知道这是否只是我的懒惰或者什么,但是有没有任何 jquery 插件可以采用表单(输入)并使用页面中使用的 ui 主题的颜色集构建风格化表单?更好的是,有一个评论解释了这个想法?解释起来有点棘手(即使我的英语很差也更棘手),但我希望你明白了。
有什么建议吗?
I don't know if this is just laziness from my part or what, but is there any jquery plugin that takes a form (inputs) and build a stylized form with the colorset of the ui theme used in the page? Even better, there is a tut where it explains this idea? It's a little bit tricky to explain (trickier even with my poor english), but I hope that you got the idea.
Any suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Wijmo 是一个 jQuery UI 和基于 jQuery UI 主题的库,它们提供 表单装饰器 在其免费版本中。
另请参阅精彩的 jQuery UI CSS 框架文档。您只需向表单元素添加适当的类就可以解决您的问题。
Wijmo is a jQuery UI and jQuery UI theme based library and they offer form decorators in their free version.
Also have a look at the great jQuery UI CSS Framework documentation. You might just be able to solve your problem by just adding the appropriate classes to your form elements.
您可以编写一个简单的 jQuery 小部件来遍历您的输入并向其添加 jQuery 主题样式(ui-..... 类)。
您可以在以下位置找到这个想法:
http://www.tuttoaster.com /enhancing-forms-using-jquery-ui/12/
小部件已准备就绪:
http://pastebin.com/bu68sDha
您可能需要在小部件中进行一些小的更改。
如果您有一些服务器端组件可以为您构建表单并准备好最终的 html(例如 jsp 标签),那么此解决方案非常好
It is possible that you write a simple jQuery widget that traverse your inputs and add jQuery theme styles (ui-..... classes) to them.
You can find the idea at:
http://www.tuttoaster.com/enhancing-forms-using-jquery-ui/12/
The widget is ready at:
http://pastebin.com/bu68sDha
You may need to make some small changes in the widget.
This solution is very good if you have some server side components that build the form for you and make the final htmls ready (like jsp tags)