0

我在我的网站上使用 jquery 旋钮。它在 mozilla、crome 和 safari 中运行良好。但不适用于ie8。这是我的ie结果:(。在此处输入图像描述

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

谢谢。

4

1 回答 1

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 在 IE 8 中不起作用。

于 2013-06-11T06:50:28.890 回答