在按钮上添加图像

发布于 2024-10-12 10:31:41 字数 216 浏览 2 评论 0原文

任何人都可以帮助我。如何在按钮上添加图像?我正在使用以下代码来创建按钮。我想显示图像而不是“刷新”。可以这样做吗? 提前致谢。

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

百合的盛世恋 2024-10-19 10:31:41

您对此文档感兴趣:

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.

花开半夏魅人心 2024-10-19 10:31:41

这不是一个按钮,而是一个 div 元素。

要让按钮带有图像,请使用这样的 HTML:

<button type="button"><img src="Refresh.gif" /></button>

That's not a button, it's a div element.

To have button with image, have such HTML:

<button type="button"><img src="Refresh.gif" /></button>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文