IE支持canvas标签
<div id="cnblogs_post_body">使用excanvas.js可以让IE支持Html5的canvas标签,具体用法如下:<div class="cnblogs_code"> 1 <html> 2 <head> 3 <title></title> 4 <!--> 5 <script type="text/javascript" src="excanvas.js" ></script> 6 <!--> 7 </head> 8 <body> 9 <canvas id="canvas" width="400" height="300"></canvas>10 <script type="text/javascript">11 window.onload = function() {12 var ctx = document.getElementById("canvas").getContext("2d");13 ctx.fillRect(10, 10, 20, 20);14 };15 </script>16 </body>17 </html>
页:
[1]