如何将自定义按钮添加到引导程序输入
我能找到的最接近的是:
input[data-icon] {
padding-left: 25px;
background: url("https://static.thenounproject.com/png/101791-200.png") no-repeat left;
background-size: 20px;
}
但是一旦出现jQuery的验证图标,将删除此图标。
我知道Bootstrap输入组可以预处和附加图标,但是这些图标已经保留用于其他用法(在我的项目中)。
此外,我希望添加的图标也可以单击。添加为背景图像不起作用。
The closest I can find is:
input[data-icon] {
padding-left: 25px;
background: url("https://static.thenounproject.com/png/101791-200.png") no-repeat left;
background-size: 20px;
}
But this icon will be removed once the JQuery's validation icon appears.
I knew Bootstrap input group can prepend and append icons, but those icons had already been reserved for other usage (in my project).
Besides, I wish the added icon is clickable as well. Added as a background image doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里,你去...
这正是您想要的。图标也可单击。请参阅下面的摘要。
Here you go...
This is exactly what you want. The icon is also clickable. See the snippet below.