You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var worker = new Worker('numberworker.js'); 创建一个专用线程; var worker = new SharedWorker('sharedworker.js', ’ mysharedworker ’ ); 共享线程创建 worker.postMessage("{first:347734080,second:3423744400}");通过postMessage向numberworker.js文件传递数据; worker.onmessage函数来接受返回的数据;
No description provided.
The text was updated successfully, but these errors were encountered: