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);
}
案内してもらえますか?