如何在 jquery ui 输入按钮上放置图标?
根据 jquery ui 按钮文档,我尝试了以下操作:
<jquery>$("#test").button({ icons: { primary:'ui-icon-gear' } });</jquery>
<input id="test" type="submit" value="test"></input>
但是该图标没有出现在按钮上。如果我将 更改为
,它就可以工作;但我需要表单提交按钮上的图标。将
放在按钮周围也没有帮助(然后我在按钮内有一个按钮)。
我还尝试了 这个 stackoverflow 问题中描述的解决方案,但是 .prepend 跨度没有对我的页面没有影响。有什么想法吗?
Based on the jquery ui button documentation, I tried the following:
<jquery>$("#test").button({ icons: { primary:'ui-icon-gear' } });</jquery>
<input id="test" type="submit" value="test"></input>
However the icon doesn't appear on the button. If I change the <input>
to a <span>
, it works; but I need the icons on a form submit button. Placing the <span>
around the button doesn't help either (then I have a button inside a button).
I also tried the solution described in this stackoverflow question, but the .prepend span doesn't have an effect on my page. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将单击事件绑定到您的跨度,而不是像按钮一样...例如:
更好的方法是将其绑定在 jQuery 加载器函数中,当然;-)
you can bind a click event to your span than it's like a button ... for example:
better way is to bind it in the jQuery loader function, for sure ;-)
试试这个,
我喜欢把我的图标放在我的列表中,并将其变成更有趣的东西,例如:
并将您的输入设置为:
Try this instead
I like to put my icon in my list and turn it into something more fun like:
And have your input as: