Apparently this line of code is triggering "Object expected":
var bPid = (b != null && typeof (b.processId) == "number") ? b.processId : 0;
Unfortunately I can't step through the code in the debugger since this is an intermittent error that shows up in a Windows SideShow gadget that I'm writing. But, I'd imagine someone should be able to tell me how it's even possible to get object expected given all the checks that I'm doing to attempt to prevent something like that.
以上就是How is this "object expected" JavaScript error possible?的详细内容,更多请关注web前端其它相关文章!