如何使用 jQuery 在 Stripes 按钮上添加图标

发布于 2024-08-09 10:09:56 字数 671 浏览 3 评论 0原文

我正在使用 Stripes 和 jQuery 以及生成的 jQuery UI 主题。我想在 div 中嵌入 ,然后使用主题中的图标之一为提交设置 样式。

这个有效: (但显然与 Stripes 无关)

<button id="save" class="ui-state-default ui-corner-all">
    <span class="ui-icon ui-icon-check"></span>
</button>

这个失败:

<stripes:button name="save" class="ui-state-default ui-corner-all">
    <span class="ui-icon ui-icon-check"></span> 
</stripes:button>

失败的给了我一个带有跨度的样式漂亮的按钮标记为文本。

有什么建议吗?这可能吗?

I am using Stripes and jQuery along with a generated jQuery UI theme. I want to embed a <stripes:form> in a div, then style the <stripes:button> for the submit with one of the icons from the theme.

This Works: (but obviously doesn't tie in to Stripes)

<button id="save" class="ui-state-default ui-corner-all">
    <span class="ui-icon ui-icon-check"></span>
</button>

This Fails:

<stripes:button name="save" class="ui-state-default ui-corner-all">
    <span class="ui-icon ui-icon-check"></span> 
</stripes:button>

The failing one gives me a nicely styled button with the span tag as text.

Any suggestions? Is this even possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

焚却相思 2024-08-16 10:09:56

Stripes 的人总是告诉人们,当 Stripes 标签给您带来任何麻烦时,只使用普通的 HTML 标签。 Stripes 在这里并没有为您做那么多,特别是如果您没有利用从操作/字段名称到属性(消息目录条目)的映射。

The Stripes guys always tell people to just use a plain ol' HTML tag when the Stripes tags cause you any sort of grief. It's not like Stripes does that much for you here, especially if you're not exploiting the mapping from action/field names to properties (message catalog entries).

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