尝试在两个图标之间切换
我启动两个按钮(我使用的是 CSS themeroller 中内置的 JQuery):
$( ".upArrow" ).button({ icons: {secondary:'ui-icon-circle-arrow-n'} });
$( ".downArrow" ).button({ icons: {secondary:'ui-icon-circle-arrow-s'} });
我希望在单击同一按钮时能够在这两个图标之间切换,并以某种方式在 .upArrow 类和 .downArrow 类之间切换。我不知道怎么办。我将不胜感激任何帮助。
I initiate two buttons (I'm using the JQuery built in CSS themeroller):
$( ".upArrow" ).button({ icons: {secondary:'ui-icon-circle-arrow-n'} });
$( ".downArrow" ).button({ icons: {secondary:'ui-icon-circle-arrow-s'} });
I want to be able to toggle between these two icons when clicking the same button, and somehow switch between the .upArrow class and .downArrow class. I'm not sure how. I'd appreciate any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您使用的是 jQuery UI 按钮,因此您可以更改
icon
选项与toggle()
函数。Since you're working with jQuery UI buttons, you can change the
icon
option with thetoggle()
function.您可以使用 jQuery 的 .toggleClass() 方法。您不一定需要删除其他类,只需使用 CSS 来覆盖其他类的设置即可:
You can use the .toggleClass() method of jQuery. You don't necessarily need to take away the other class, just use CSS to your advantage to override the other class' settings: