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 に答える