在下面的ajax请求中,有人可以解释一下(tryMS)
function createRequest() {
try {
request = new XMLHttpRequest();
} catch (tryMS) {
try {
request = new ActiveXObject("Msxml2.XMLHTTP");
} catch (otherMS) {
try {
request = new ActiveXObject("Microsoft.XMLHTTP");
} catch (failed) {
request = null;
}
}
}
return request;
}
(tryMS) 和 (otherMS) 是 javascript 的一部分,还是只是代码中使用的常见参数,它们有特定的功能吗?如果它是一个参数,它的价值来自哪里。