如何通过一些 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);
}
你能指导我吗?