0

如何通过一些 jQuery 函数触发 PrtScn 即 PrintScreen 键盘事件,然后将捕获的图像保存到服务器?

function ErrorLog(errorCode, errorMessage) {

    // Here i want the screenshot of the user's screen where the error have occurred ...
    var _screenShot = "";

    SendErrorToServer(errorCode, errorMessage, _screenShot);
}

你能指导我吗?

4

1 回答 1

0

也许可以使用 HTML5 来完成<canvas>

http://html2canvas.hertzen.com/

演示:http ://html2canvas.hertzen.com/screenshots.html

于 2012-09-14T12:27:23.690 回答