Jquery Knob在IE 8中不起作用

时间:2013-06-11 06:47:16

标签: jquery html css html5 jquery-knob

我在我的网站上使用jquery旋钮。它在mozilla,chrome和safari中运行良好。但是没有在ie8工作。这是我的结果:(。enter image description here

<script type="text/javascript">
$(function(){
$(".dial").knob({
    readOnly: true,
    fgColor: "#00ABC6",
    bgColor: "#666666",
    thickness: 0.25,
    width:50,
    height:50,
                });
});
</script>

感谢。

1 个答案:

答案 0 :(得分:2)

jQuery Knob使用canvas和Internet Explorer 8不支持canvas元素。 http://caniuse.com/#search=canvas

修改 您可以尝试为IE8添加polyfill,https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills#canvas。但我不知道它们中的任何一个是否与jQuery旋钮兼容。

编辑2: http://code.google.com/p/explorercanvas/可能会执行tric,Jquery Knob not working in IE 8.