代码搜索:XMLHTTP
找到约 1,050 项符合「XMLHTTP」的源代码
代码结果 1,050
www.eeworm.com/read/435267/7794688
js ajax.js
function createRequest() {
try {
request = new XMLHttpRequest();
} catch (tryMS) {
try {
request = new ActiveXObject("Msxml2.XMLHTTP");
} catch (otherMS) {
try {
www.eeworm.com/read/483837/1274721
js howaveajax.js
// JScript 文件
// JScript 文件
function HttpAjax() {
var self = this;
this.createXMLHttpRequest = function() {
try {
return new ActiveXObject("Msxml2.XMLHTTP");
}
www.eeworm.com/read/389332/2541123
js rss_reader.js
// holds an instance of XMLHttpRequest
var xmlHttp = createXmlHttpRequestObject();
// when set to true, display detailed error messages
var showErrors = true;
// creates an XMLHttpRequest instan
www.eeworm.com/read/389332/2541154
js friendly.js
// holds an instance of XMLHttpRequest
var xmlHttp = createXmlHttpRequestObject();
// holds the remote server address and parameters
var serverAddress = "friendly.php";
var getNumberParams = "acti
www.eeworm.com/read/389332/2541196
js grid.js
// stores the reference to the XMLHttpRequest object
var xmlHttp = createXmlHttpRequestObject();
// the name of the XSLT file
var xsltFileUrl = "grid.xsl";
// the file that returns the requested d