如何使用 jQuery 在 Stripes 按钮上添加图标
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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).