2012-10-13 58 views

回答

2

在IE9文檔沒有屬性document.width/document.height所以要設置在畫布寬度/高度爲0。

嘗試使用

canvas.width = document.body.clientWidth; 
canvas.height = document.body.clientHeight; 

canvas.width = $(document).width(); 
canvas.height = $(document).height(); 
+0

好的。非常感謝。我修好了。很高興知道文檔屬性。再次感謝 – user1612293