我如何在我的网站上引用 jquery ui 图标。 。
有没有办法在我的网站的任何地方将 jquery ui 图标引用为常规图像?
is there anyway to reference jquery ui icons as regular images anywhere in my site?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您已链接到 jquery CSS,则可以通过应用 .ui-icon 基类和特定图标类(例如 - .ui-icon-close 表示关闭按钮)来获取图标到你的元素(通常是跨度)
jquery wiki 有一个完整的图标及其类列表,你可以在这里找到它: http://wiki.jqueryui.com/w/page/12137970/jQuery-UI-CSS-Framework
只需检查图标并获取类。
编辑
示例用法
If you've linked to the jquery CSS, you can get at the icons by applying the
.ui-icon
base class and the specific icon class (e.g - .ui-icon-close for close button) to your element (usually span)The jquery wiki has a comprehensive list of icons and their classes, you can find it here : http://wiki.jqueryui.com/w/page/12137970/jQuery-UI-CSS-Framework
Just inspect the icon and get the class.
EDIT
Sample usage
看一下这个代码片段: http://www.xinotes.org/notes/note/第773章
Take a look at this code snipplet: http://www.xinotes.org/notes/note/773/
您可以使用 jQueryUI Icons Cheatsheet 中的图标类
you can use icon classes from jQueryUI Icons Cheatsheet