Glyphicons no longer supported in Bootstrap 4

随声附和 提交于 2019-11-29 17:55:53

1 - Wich is a good alternative to Glyphicons? Or there is a way to use them yet?

The best alternative IMHO: http://fontawesome.io/icons/

2 - How I may change the html and js snippet above to make it working wuth Bootstrap 4?

jQuery Checkbox Buttons - Bootstrap 4

You need to change the JS:

settings = {
    on: {
        icon: 'fa fa-square-o'
    },
    off: {
        icon: 'fa fa-check-square-o'
    }
};

And the css class .hidden is now deprecated so Bootstrap recommends to use style="display: none" instead.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!