亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? swfupload.js

?? asp的bbs程序
?? JS
?? 第 1 頁 / 共 3 頁
字號:
		// Make sure Flash is done before we try to remove it
		this.stopUpload();
		
		// Remove the SWFUpload DOM nodes
		var movieElement = null;
		try {
			movieElement = this.getMovieElement();
		} catch (ex) {
		}
		
		if (movieElement != undefined && movieElement.parentNode != undefined && typeof movieElement.parentNode.removeChild === "function") {
			var container = movieElement.parentNode;
			if (container != undefined) {
				container.removeChild(movieElement);
				if (container.parentNode != undefined && typeof container.parentNode.removeChild === "function") {
					container.parentNode.removeChild(container);
				}
			}
		}
		
		// Destroy references
		SWFUpload.instances[this.movieName] = null;
		delete SWFUpload.instances[this.movieName];

		delete this.movieElement;
		delete this.settings;
		delete this.customSettings;
		delete this.eventQueue;
		delete this.movieName;
		
		delete window[this.movieName];
		
		return true;
	} catch (ex1) {
		return false;
	}
};

// Public: displayDebugInfo prints out settings and configuration
// information about this SWFUpload instance.
// This function (and any references to it) can be deleted when placing
// SWFUpload in production.
SWFUpload.prototype.displayDebugInfo = function () {
	this.debug(
		[
			"---SWFUpload Instance Info---\n",
			"Version: ", SWFUpload.version, "\n",
			"Movie Name: ", this.movieName, "\n",
			"Settings:\n",
			"\t", "upload_url:               ", this.settings.upload_url, "\n",
			"\t", "flash_url:                ", this.settings.flash_url, "\n",
			"\t", "use_query_string:         ", this.settings.use_query_string.toString(), "\n",
			"\t", "requeue_on_error:         ", this.settings.requeue_on_error.toString(), "\n",
			"\t", "http_success:             ", this.settings.http_success.join(", "), "\n",
			"\t", "file_post_name:           ", this.settings.file_post_name, "\n",
			"\t", "post_params:              ", this.settings.post_params.toString(), "\n",
			"\t", "file_types:               ", this.settings.file_types, "\n",
			"\t", "file_types_description:   ", this.settings.file_types_description, "\n",
			"\t", "file_size_limit:          ", this.settings.file_size_limit, "\n",
			"\t", "file_upload_limit:        ", this.settings.file_upload_limit, "\n",
			"\t", "file_queue_limit:         ", this.settings.file_queue_limit, "\n",
			"\t", "debug:                    ", this.settings.debug.toString(), "\n",

			"\t", "prevent_swf_caching:      ", this.settings.prevent_swf_caching.toString(), "\n",

			"\t", "button_placeholder_id:    ", this.settings.button_placeholder_id.toString(), "\n",
			"\t", "button_image_url:         ", this.settings.button_image_url.toString(), "\n",
			"\t", "button_width:             ", this.settings.button_width.toString(), "\n",
			"\t", "button_height:            ", this.settings.button_height.toString(), "\n",
			"\t", "button_text:              ", this.settings.button_text.toString(), "\n",
			"\t", "button_text_style:        ", this.settings.button_text_style.toString(), "\n",
			"\t", "button_text_top_padding:  ", this.settings.button_text_top_padding.toString(), "\n",
			"\t", "button_text_left_padding: ", this.settings.button_text_left_padding.toString(), "\n",
			"\t", "button_action:            ", this.settings.button_action.toString(), "\n",
			"\t", "button_disabled:          ", this.settings.button_disabled.toString(), "\n",

			"\t", "custom_settings:          ", this.settings.custom_settings.toString(), "\n",
			"Event Handlers:\n",
			"\t", "swfupload_loaded_handler assigned:  ", (typeof this.settings.swfupload_loaded_handler === "function").toString(), "\n",
			"\t", "file_dialog_start_handler assigned: ", (typeof this.settings.file_dialog_start_handler === "function").toString(), "\n",
			"\t", "file_queued_handler assigned:       ", (typeof this.settings.file_queued_handler === "function").toString(), "\n",
			"\t", "file_queue_error_handler assigned:  ", (typeof this.settings.file_queue_error_handler === "function").toString(), "\n",
			"\t", "upload_start_handler assigned:      ", (typeof this.settings.upload_start_handler === "function").toString(), "\n",
			"\t", "upload_progress_handler assigned:   ", (typeof this.settings.upload_progress_handler === "function").toString(), "\n",
			"\t", "upload_error_handler assigned:      ", (typeof this.settings.upload_error_handler === "function").toString(), "\n",
			"\t", "upload_success_handler assigned:    ", (typeof this.settings.upload_success_handler === "function").toString(), "\n",
			"\t", "upload_complete_handler assigned:   ", (typeof this.settings.upload_complete_handler === "function").toString(), "\n",
			"\t", "debug_handler assigned:             ", (typeof this.settings.debug_handler === "function").toString(), "\n"
		].join("")
	);
};

/* Note: addSetting and getSetting are no longer used by SWFUpload but are included
	the maintain v2 API compatibility
*/
// Public: (Deprecated) addSetting adds a setting value. If the value given is undefined or null then the default_value is used.
SWFUpload.prototype.addSetting = function (name, value, default_value) {
    if (value == undefined) {
        return (this.settings[name] = default_value);
    } else {
        return (this.settings[name] = value);
	}
};

// Public: (Deprecated) getSetting gets a setting. Returns an empty string if the setting was not found.
SWFUpload.prototype.getSetting = function (name) {
    if (this.settings[name] != undefined) {
        return this.settings[name];
	}

    return "";
};



// Private: callFlash handles function calls made to the Flash element.
// Calls are made with a setTimeout for some functions to work around
// bugs in the ExternalInterface library.
SWFUpload.prototype.callFlash = function (functionName, argumentArray) {
	argumentArray = argumentArray || [];
	
	var movieElement = this.getMovieElement();
	var returnValue;

	if (typeof movieElement[functionName] === "function") {
		// We have to go through all this if/else stuff because the Flash functions don't have apply() and only accept the exact number of arguments.
		if (argumentArray.length === 0) {
			returnValue = movieElement[functionName]();
		} else if (argumentArray.length === 1) {
			returnValue = movieElement[functionName](argumentArray[0]);
		} else if (argumentArray.length === 2) {
			returnValue = movieElement[functionName](argumentArray[0], argumentArray[1]);
		} else if (argumentArray.length === 3) {
			returnValue = movieElement[functionName](argumentArray[0], argumentArray[1], argumentArray[2]);
		} else {
			throw "Too many arguments";
		}
		
		// Unescape file post param values
		if (returnValue != undefined && typeof returnValue.post === "object") {
			returnValue = this.unescapeFilePostParams(returnValue);
		}
		
		return returnValue;
	} else {
		throw "Invalid function name: " + functionName;
	}
};


/* *****************************
	-- Flash control methods --
	Your UI should use these
	to operate SWFUpload
   ***************************** */

// Public: selectFile causes a File Selection Dialog window to appear.  This
// dialog only allows 1 file to be selected. WARNING: this function does not work in Flash Player 10
SWFUpload.prototype.selectFile = function () {
	this.callFlash("SelectFile");
};

// Public: selectFiles causes a File Selection Dialog window to appear/ This
// dialog allows the user to select any number of files
// Flash Bug Warning: Flash limits the number of selectable files based on the combined length of the file names.
// If the selection name length is too long the dialog will fail in an unpredictable manner.  There is no work-around
// for this bug.  WARNING: this function does not work in Flash Player 10
SWFUpload.prototype.selectFiles = function () {
	this.callFlash("SelectFiles");
};


// Public: startUpload starts uploading the first file in the queue unless
// the optional parameter 'fileID' specifies the ID 
SWFUpload.prototype.startUpload = function (fileID) {
	this.callFlash("StartUpload", [fileID]);
};

// Public: cancelUpload cancels any queued file.  The fileID parameter may be the file ID or index.
// If you do not specify a fileID the current uploading file or first file in the queue is cancelled.
// If you do not want the uploadError event to trigger you can specify false for the triggerErrorEvent parameter.
SWFUpload.prototype.cancelUpload = function (fileID, triggerErrorEvent) {
	if (triggerErrorEvent !== false) {
		triggerErrorEvent = true;
	}
	this.callFlash("CancelUpload", [fileID, triggerErrorEvent]);
};

// Public: stopUpload stops the current upload and requeues the file at the beginning of the queue.
// If nothing is currently uploading then nothing happens.
SWFUpload.prototype.stopUpload = function () {
	this.callFlash("StopUpload");
};

/* ************************
 * Settings methods
 *   These methods change the SWFUpload settings.
 *   SWFUpload settings should not be changed directly on the settings object
 *   since many of the settings need to be passed to Flash in order to take
 *   effect.
 * *********************** */

// Public: getStats gets the file statistics object.
SWFUpload.prototype.getStats = function () {
	return this.callFlash("GetStats");
};

// Public: setStats changes the SWFUpload statistics.  You shouldn't need to 
// change the statistics but you can.  Changing the statistics does not
// affect SWFUpload accept for the successful_uploads count which is used
// by the upload_limit setting to determine how many files the user may upload.
SWFUpload.prototype.setStats = function (statsObject) {
	this.callFlash("SetStats", [statsObject]);
};

// Public: getFile retrieves a File object by ID or Index.  If the file is
// not found then 'null' is returned.
SWFUpload.prototype.getFile = function (fileID) {
	if (typeof(fileID) === "number") {
		return this.callFlash("GetFileByIndex", [fileID]);
	} else {
		return this.callFlash("GetFile", [fileID]);
	}
};

// Public: addFileParam sets a name/value pair that will be posted with the
// file specified by the Files ID.  If the name already exists then the
// exiting value will be overwritten.
SWFUpload.prototype.addFileParam = function (fileID, name, value) {
	return this.callFlash("AddFileParam", [fileID, name, value]);
};

// Public: removeFileParam removes a previously set (by addFileParam) name/value
// pair from the specified file.
SWFUpload.prototype.removeFileParam = function (fileID, name) {
	this.callFlash("RemoveFileParam", [fileID, name]);
};

// Public: setUploadUrl changes the upload_url setting.
SWFUpload.prototype.setUploadURL = function (url) {
	this.settings.upload_url = url.toString();
	this.callFlash("SetUploadURL", [url]);
};

// Public: setPostParams changes the post_params setting
SWFUpload.prototype.setPostParams = function (paramsObject) {
	this.settings.post_params = paramsObject;
	this.callFlash("SetPostParams", [paramsObject]);
};

// Public: addPostParam adds post name/value pair.  Each name can have only one value.
SWFUpload.prototype.addPostParam = function (name, value) {
	this.settings.post_params[name] = value;
	this.callFlash("SetPostParams", [this.settings.post_params]);
};

// Public: removePostParam deletes post name/value pair.
SWFUpload.prototype.removePostParam = function (name) {
	delete this.settings.post_params[name];
	this.callFlash("SetPostParams", [this.settings.post_params]);
};

// Public: setFileTypes changes the file_types setting and the file_types_description setting
SWFUpload.prototype.setFileTypes = function (types, description) {
	this.settings.file_types = types;
	this.settings.file_types_description = description;
	this.callFlash("SetFileTypes", [types, description]);
};

// Public: setFileSizeLimit changes the file_size_limit setting
SWFUpload.prototype.setFileSizeLimit = function (fileSizeLimit) {
	this.settings.file_size_limit = fileSizeLimit;
	this.callFlash("SetFileSizeLimit", [fileSizeLimit]);
};

// Public: setFileUploadLimit changes the file_upload_limit setting
SWFUpload.prototype.setFileUploadLimit = function (fileUploadLimit) {
	this.settings.file_upload_limit = fileUploadLimit;
	this.callFlash("SetFileUploadLimit", [fileUploadLimit]);
};

// Public: setFileQueueLimit changes the file_queue_limit setting
SWFUpload.prototype.setFileQueueLimit = function (fileQueueLimit) {
	this.settings.file_queue_limit = fileQueueLimit;
	this.callFlash("SetFileQueueLimit", [fileQueueLimit]);
};

// Public: setFilePostName changes the file_post_name setting
SWFUpload.prototype.setFilePostName = function (filePostName) {
	this.settings.file_post_name = filePostName;
	this.callFlash("SetFilePostName", [filePostName]);
};

// Public: setUseQueryString changes the use_query_string setting
SWFUpload.prototype.setUseQueryString = function (useQueryString) {
	this.settings.use_query_string = useQueryString;
	this.callFlash("SetUseQueryString", [useQueryString]);
};

// Public: setRequeueOnError changes the requeue_on_error setting
SWFUpload.prototype.setRequeueOnError = function (requeueOnError) {
	this.settings.requeue_on_error = requeueOnError;
	this.callFlash("SetRequeueOnError", [requeueOnError]);
};

// Public: setHTTPSuccess changes the http_success setting
SWFUpload.prototype.setHTTPSuccess = function (http_status_codes) {
	if (typeof http_status_codes === "string") {
		http_status_codes = http_status_codes.replace(" ", "").split(",");
	}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩国产免费| 激情综合网激情| 天天综合天天做天天综合| 久久精品久久久精品美女| 欧美吻胸吃奶大尺度电影| 精品日韩99亚洲| 午夜不卡av在线| 国产区在线观看成人精品| 亚洲福利视频一区| 91丨九色丨黑人外教| 亚洲精品一区二区三区影院| 麻豆视频一区二区| 91麻豆精品国产91久久久久久 | 91精品国产全国免费观看| 午夜电影一区二区| 国产精品久久久99| 99re这里都是精品| 亚洲欧洲在线观看av| 日本二三区不卡| 亚洲美女区一区| 在线亚洲欧美专区二区| 三级久久三级久久| 9191精品国产综合久久久久久| 成人av影视在线观看| 日韩一区在线看| 国产亲近乱来精品视频| 欧美电视剧在线看免费| 波多野结衣亚洲一区| 亚洲午夜精品17c| 国产精品毛片a∨一区二区三区| 成人免费高清视频在线观看| 成人免费小视频| 国产精品视频免费看| 国产欧美一区二区精品秋霞影院| 欧美电影免费观看高清完整版 | 中文字幕亚洲一区二区va在线| 久久综合色综合88| www.在线成人| 成人av在线看| 97国产一区二区| 91免费视频网| 欧美综合天天夜夜久久| 色婷婷精品大在线视频| 青青草97国产精品免费观看无弹窗版| 精品久久久久久综合日本欧美| 9191精品国产综合久久久久久| 欧美日韩你懂的| 国产精品1024| 亚洲国产精品一区二区久久| 亚洲欧美福利一区二区| 亚洲综合丁香婷婷六月香| 精品粉嫩超白一线天av| 亚洲精品在线电影| 国产日韩高清在线| 最新国产成人在线观看| 欧美va亚洲va| 国产日韩欧美不卡在线| 中文字幕一区二区三区不卡在线 | 风间由美性色一区二区三区| 婷婷开心久久网| 免费看欧美美女黄的网站| 久久成人羞羞网站| 丰满少妇在线播放bd日韩电影| 成人av网站在线观看| 91麻豆.com| 欧美美女黄视频| 91在线视频免费观看| 在线视频国产一区| 日韩亚洲欧美成人一区| 欧美性一区二区| 日韩美女天天操| 欧美国产精品久久| 久久综合资源网| 日韩一区在线看| 免费高清成人在线| 成人午夜碰碰视频| 欧美伦理影视网| 国产日产亚洲精品系列| 亚洲国产精品自拍| 极品美女销魂一区二区三区免费| 成人免费av资源| 91精品国产综合久久精品app| 日韩欧美的一区| 亚洲人一二三区| 免费成人在线视频观看| 成人黄页在线观看| 在线不卡一区二区| 国产精品女人毛片| 日本欧美一区二区三区乱码| 午夜精品久久久| 国产99久久久久| 欧美电影影音先锋| 国产精品区一区二区三| 美女一区二区视频| 色噜噜狠狠成人中文综合| 精品乱人伦小说| 尤物av一区二区| 一区二区三区在线免费| 亚洲乱码一区二区三区在线观看| 日韩经典一区二区| 色综合一个色综合亚洲| 91在线丨porny丨国产| 欧美大胆一级视频| 中文字幕亚洲一区二区va在线| 日本一道高清亚洲日美韩| 成人高清在线视频| 日韩美女天天操| 日韩精品一级二级 | 国产伦精品一区二区三区免费| 青娱乐精品在线视频| 91视频观看免费| 久久噜噜亚洲综合| 亚洲国产精品ⅴa在线观看| 五月天激情综合| 91美女蜜桃在线| 国产精品久久久久精k8| 国产尤物一区二区在线| 欧美久久久久久久久中文字幕| 亚洲国产成人一区二区三区| 免费在线观看日韩欧美| 欧美日韩国产小视频| 亚洲精品中文字幕乱码三区| 成人av在线影院| 国产欧美日韩精品一区| 国产一区91精品张津瑜| 精品国产露脸精彩对白| 免费一区二区视频| 欧美精品精品一区| 调教+趴+乳夹+国产+精品| 欧洲一区二区av| 一区二区三区 在线观看视频| 国产九九视频一区二区三区| 国产精品一线二线三线精华| 日韩精品在线一区二区| 美日韩一区二区| 日韩视频一区二区三区在线播放| 午夜私人影院久久久久| 欧美日本在线播放| 三级在线观看一区二区 | 欧美日韩亚洲不卡| 亚洲高清免费视频| 欧美中文字幕一区二区三区亚洲| 亚洲欧美区自拍先锋| 在线免费观看视频一区| 夜夜夜精品看看| 欧美日韩在线播放三区四区| 首页国产欧美久久| 91精品国产aⅴ一区二区| 美洲天堂一区二卡三卡四卡视频| 欧美一区二区三区在线看| 麻豆成人久久精品二区三区小说| 日韩视频在线观看一区二区| 韩国三级在线一区| 欧美日韩的一区二区| 天堂资源在线中文精品| 日韩一区二区免费在线电影| 久久成人久久爱| 国产无人区一区二区三区| 日韩电影在线观看网站| 日韩一区二区精品在线观看| 国产自产高清不卡| 日日骚欧美日韩| 欧美成人一区二区三区片免费| 经典一区二区三区| 欧美经典三级视频一区二区三区| 99re66热这里只有精品3直播| 亚洲丰满少妇videoshd| 欧美电视剧在线看免费| av在线综合网| 人人精品人人爱| 国产精品久久夜| 精品视频免费在线| 精品一区免费av| 亚洲品质自拍视频网站| 91精品国产黑色紧身裤美女| 高清国产一区二区| 亚洲国产日韩a在线播放| 久久免费视频色| 在线免费观看日本欧美| 日韩av电影免费观看高清完整版 | 色激情天天射综合网| 蜜臀av一区二区在线免费观看| 国产情人综合久久777777| 欧美日韩一区二区在线视频| 国模套图日韩精品一区二区| 亚洲人成网站精品片在线观看| 欧美日韩国产经典色站一区二区三区| 亚洲1区2区3区4区| 99精品视频在线观看| 亚洲高清不卡在线观看| 日韩精品影音先锋| 午夜私人影院久久久久| 亚洲国产精品v| 欧美日韩国产综合一区二区三区| 蜜桃av噜噜一区| 亚洲视频综合在线| 精品久久久久久综合日本欧美| zzijzzij亚洲日本少妇熟睡| 午夜免费久久看| 国产精品女主播在线观看|