在按钮上添加图像
任何人都可以帮助我。如何在按钮上添加图像?我正在使用以下代码来创建按钮。我想显示图像而不是“刷新”。可以这样做吗? 提前致谢。
<div data-role="button" data-iconpos="right" id="searchResultRefresh" data-icon="refresh">
refresh </div>
Any one help me. How to add the image on the button? I am using following code for create a button. I want to display the image instead of "refresh". is it possible to do this?
Thanks in advance.
<div data-role="button" data-iconpos="right" id="searchResultRefresh" data-icon="refresh">
refresh </div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您对此文档感兴趣:
http://jquerymobile.com/ demos/1.0a2/#docs/buttons/buttons-icons.html
底部提到了自定义图标。
采用现有的 ui-icon-sth 类之一并更改偏移量以引用图标文件的末尾,然后如果您想经常重用它,则在其中添加您的图标。
如果不是 - 只需更改复制的 CSS 中的图像链接并删除背景位置定义。
You are interested in this document:
http://jquerymobile.com/demos/1.0a2/#docs/buttons/buttons-icons.html
Custom icons are mentioned at the bottom.
Take one of the existing ui-icon-sth classes and change the offsets to refer to the end of the icons file and then add your icon there if you want to reuse it a lot.
If not - just change the image link in the copied CSS and remove background-position definition.
这不是一个按钮,而是一个
div
元素。要让按钮带有图像,请使用这样的 HTML:
That's not a button, it's a
div
element.To have button with image, have such HTML: