HTML5 CORS 中事件处理程序的示例
跨域资源共享 (CORS) 是一种机制,可以在 Web 浏览器中从另一个域中允许受限制的资源
例如,如果您在 html5 演示部分中单击 HTML5 视频播放器。它将要求摄像头权限。如果用户允许权限,那么它只会打开摄像头或其他摄像头不会为 Web 应用程序打开摄像头。
以下是 CORS 中事件处理程序的示例
xhr.onload = function() { var responseText = xhr.responseText; // process the response. console.log(responseText); }; xhr.onerror = function() { console.log('There was an error!'); };
广告