Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在调用下面的函数之前已经输出了msg1 我可以在跟踪窗口中看到的。
msg1
tmdiff = timenow() - msg1.time;
tmdiff始终返回 的值,timenow()并且 的值msg1.time始终为零。
tmdiff
timenow()
msg1.time
您还应该在 on message 例程中捕获您自己的消息。因此,假设 msg1 对以下内容是全局的。
on message * { if ( msg1.id == this.id ) msg1=this; }