Bootstrap 3.3.7 字形不适用于 jQueryUi 1.12

Bootstrap 3.3.7 glyphicons not working for jQueryUi 1.12

向 jQuery UI 滑块按钮动态添加两个字形时,不显示字形。降级到 jQuery UI 1.10 解决了问题:

不工作:jsfiddle

<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>  
$('#slider a').html('<label><span class="glyphicon glyphicon-chevron-left"></span><span class="glyphicon glyphicon-chevron-right"></span></label>');

工作:jsfiddle

<script src="https://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
$('#slider a').html('<label><span class="glyphicon glyphicon-chevron-left"></span><span class="glyphicon glyphicon-chevron-right"></span></label>');

有什么想法吗?我不想降级。

我认为使用字形图标的正确方法是使用 <i> 标签 (否)
但是将 $('#slider a') 更改为 $('#slider span') 将起作用。
干杯