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