Errata,book,Ch15,P462
P462,
oXmlDom.addEventListener(¡°load¡±, function () {
this.__initError__();
this.__changeReadyState__(4);
}, false);
should be:
oXmlDom.addEventListener("load", function () {
this.__checkForErrors__();
this.__changeReadyState__(4);
}, false);
|