我正在使用一個真棒html2canvas函數,但我有一個noob問題。如何將它從document.body捕獲的字段更改爲特定的面板? 總之,我需要將document.body更改爲我想要捕獲的面板,我只是不知道要獲取我想要的面板的代碼。document.Body ComponentQuery
我已經試過Ext.ComponentQuery.query('#testPanel')沒有任何成功。
testButtonClicked: function (btn) {
html2canvas(document.body, {
onrendered: function (canvas) {
new Ext.Window({
title: 'Screenshot',
//width: 500,
height: 800,
resizable: true,
autoScroll: true,
preventBodyReset: true,
html: '<img src="' + canvas.toDataURL("image/png") + '" height="800"/>'
}).show();
}
});
不錯!謝謝。 – JesseRules