我在我的网站上使用jquery旋钮。它在mozilla,chrome和safari中运行良好。但是没有在ie8工作。这是我的结果:(。
<script type="text/javascript">
$(function(){
$(".dial").knob({
readOnly: true,
fgColor: "#00ABC6",
bgColor: "#666666",
thickness: 0.25,
width:50,
height:50,
});
});
</script>
感谢。
答案 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.