`
my249645546
  • 浏览: 427510 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

IE6下发生Internet Explorer cannot open the Internet site 操作已中止错误

阅读更多
0
0
分享到:
评论
9 楼 hebsxl 2012-09-07  

393702204  谢谢
8 楼 my249645546 2012-09-07  
hebsxl 写道
代码有点多 不好意思

你QQ多少? 我加你 代码有点乱 呵呵 看着比较费劲
7 楼 hebsxl 2012-09-07  
代码有点多 不好意思
6 楼 hebsxl 2012-09-07  
这是引用第一个iframe时候用到的js  onclick触发事件
<script type="text/javascript">	
	function showReceiver(policy_id){
		tb_show("<app:i18n key='info.10.receiver'/>","policyrevert.do?method=showReceiver&policy_id="+policy_id+"&TB_iframe=true&height=165&width=382","");
	}
	
	function sendStatistic(policy_id) {
		tb_show("<app:i18n key='info.10.countinfo'/>","policyrevert.do?method=showStatistic&policy_id="+policy_id+"&TB_iframe=true&height=350&width=460","");
	}
</script>

第二个iframe 跟上面引用的方式一样,我简单改造了一下
function getSuccDetail(seqId){
	alert(window.parent);
	window.parent.tb_show("<app:i18n key='page.10.successDetail'/>","<%=basePath%>/mas_page/sendDataSetail/sendCountAction.do?method=getSucDetailPhone&id="+seqId+"&TB_iframe=true&height=220&width=350","");
}
function getFailDetail(seqId){
	window.parent.tb_show("<app:i18n key='page.10.failtureDetail'/>","<%=basePath%>/mas_page/sendDataSetail/sendCountAction.do?method=getFailDetailPhone&id="+seqId+"&TB_iframe=true&height=220&width=350","");
}
function  initPage(){
	$("#clickSucc").click(function(){
		alert("ssaa");
		getSuccDetail('<%out.print(request.getAttribute("id")); %>');
		alert("ssbb");
	});
	$("#clickfail").click(function(){
		alert("ss1");
		getFailDetail('<%out.print(request.getAttribute("id")); %>')
		alert("ss2");
    });
}
</script>

</head>

<body onload="initPage()">


最后是插件js,主要创建iframe,我把整个插件的代码沾过来了
/*
 * Thickbox 3.1 - One Box To Rule Them All.
 * By Cody Lindley (http://www.codylindley.com)
 * Copyright (c) 2007 cody lindley
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/
		  
var tb_pathToImage = "../../nresources/default/images/thickbox/loadingAnimation.gif";
var otherimgLoader = new Image();
otherimgLoader.src = "../../../nresources/default/images/thickbox/loadingAnimation.gif";

/*!!!!!!!!!!!!!!!!! edit below this line at your own risk !!!!!!!!!!!!!!!!!!!!!!!*/

//on page load call tb_init
$(document).ready(function(){   
	tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
	imgLoader = new Image();// preload image
	imgLoader.src = tb_pathToImage;
});

//add thickbox to href & area elements that have a class of .thickbox
function tb_init(domChunk){
	$(domChunk).click(function(){
	var t = this.title || this.name || null;
	var a = this.href || this.alt;
	var g = this.rel || false;
	window.parent.tb_show(t,a,g);
	this.blur();
	return false;
	});
}

function tb_show(caption, url, imageGroup) {//function called when the user clicks on a thickbox link
	alert(1);
	try {
		if (typeof document.getElementsByTagName("body")[0].style.maxHeight === "undefined") {//if IE 6
			
/*			if(imageGroup=="text"){
				$("body","html").css({height: "100%", width: "100%"});
				$("html").css("overflow","hidden");
				if (document.getElementById("TB_HideSelect1") === null) {//iframe to hide select elements in ie6
					alert("ss");
					$("#body1").append("<iframe id='TB_HideSelect1'></iframe><div id='TB_overlay1'></div><div id='TB_window1'></div>");
				}
			}
			else{*/
				alert(2);
				$("body","html").css({height: "100%", width: "100%"});
				alert(3);
				$("html").css("overflow","hidden");
				alert(4);
				if (document.getElementById("TB_HideSelect") === null) {//iframe to hide select elements in ie6
					alert(5);
					$("body").append("<iframe id='TB_HideSelect' name='TB_HideSelect'></iframe><div id='TB_overlay' name='TB_overlay'></div><div id='TB_window' name='TB_window'></div>");
				//}
				}else{
					alert("qudiaoiframe");		
					
				}
		}else{//all others
			alert(6);
			if(document.getElementById("TB_overlay") === null){
				$("body").append("<div id='TB_overlay'></div><div id='TB_window'></div>");
			}
		}
		alert(7);
		if(tb_detectMacXFF()){
			alert(10);
			$("#TB_overlay").addClass("TB_overlayMacFFBGHack");//use png overlay so hide flash
		}else{
			alert(11);
			$("#TB_overlay").addClass("TB_overlayBG");//use background and opacity
		}
		if(caption===null){caption="";}
		alert(12);
		$("body").append("<div id='TB_load'><img src='"+imgLoader.src+"' onerror=\"src='"+otherimgLoader.src+"';\"></div>");//add loader to the page
		$('#TB_load').show();//show loader
		
		var baseURL;
	   if(url.indexOf("?")!==-1){ //ff there is a query string involved
	   		alert("xx");
			baseURL = url.substr(0, url.indexOf("?"));
			
	   }else{ 
	   	alert("xx1");
	   		baseURL = url;
	   }
	   alert(baseURL);
	   var urlString = /\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;
	   var urlType = baseURL.toLowerCase().match(urlString);
		alert(urlType);
		if(urlType == '.jpg' || urlType == '.jpeg' || urlType == '.png' || urlType == '.gif' || urlType == '.bmp'){//code to show images
			alert(14);
			TB_PrevCaption = "";
			TB_PrevURL = "";
			TB_PrevHTML = "";
			TB_NextCaption = "";
			TB_NextURL = "";
			TB_NextHTML = "";
			TB_imageCount = "";
			TB_FoundURL = false;
			if(imageGroup){
				TB_TempArray = $("a[@rel="+imageGroup+"]").get();
				for (TB_Counter = 0; ((TB_Counter < TB_TempArray.length) && (TB_NextHTML === "")); TB_Counter++) {
					var urlTypeTemp = TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);
						if (!(TB_TempArray[TB_Counter].href == url)) {						
							if (TB_FoundURL) {
								TB_NextCaption = TB_TempArray[TB_Counter].title;
								TB_NextURL = TB_TempArray[TB_Counter].href;
								TB_NextHTML = "<span id='TB_next'>&nbsp;&nbsp;<a href='#'>Next &gt;</a></span>";
							} else {
								TB_PrevCaption = TB_TempArray[TB_Counter].title;
								TB_PrevURL = TB_TempArray[TB_Counter].href;
								TB_PrevHTML = "<span id='TB_prev'>&nbsp;&nbsp;<a href='#'>&lt; Prev</a></span>";
							}
						} else {
							TB_FoundURL = true;
							TB_imageCount = "Image " + (TB_Counter + 1) +" of "+ (TB_TempArray.length);											
						}
				}
			}

			imgPreloader = new Image();
			imgPreloader.onload = function(){		
			imgPreloader.onload = null;
				
			// Resizing large images - orginal by Christian Montoya edited by me.
			var pagesize = tb_getPageSize();
			var x = pagesize[0] - 150;
			var y = pagesize[1] - 150;
			var imageWidth = imgPreloader.width;
			var imageHeight = imgPreloader.height;
			if (imageWidth > x) {
				imageHeight = imageHeight * (x / imageWidth); 
				imageWidth = x; 
				if (imageHeight > y) { 
					imageWidth = imageWidth * (y / imageHeight); 
					imageHeight = y; 
				}
			} else if (imageHeight > y) { 
				imageWidth = imageWidth * (y / imageHeight); 
				imageHeight = y; 
				if (imageWidth > x) { 
					imageHeight = imageHeight * (x / imageWidth); 
					imageWidth = x;
				}
			}
			// End Resizing
			
			TB_WIDTH = imageWidth + 30;
			TB_HEIGHT = imageHeight + 60;
			$("#TB_window").append("<a href='' id='TB_ImageOff' title='Close'><img id='TB_Image' src='"+url+"' width='"+imageWidth+"' height='"+imageHeight+"' alt='"+caption+"'/></a>" + "<div id='TB_caption'>"+caption+"<div id='TB_secondLine'>" + TB_imageCount + TB_PrevHTML + TB_NextHTML + "</div></div><div id='TB_closeWindow'><a href='#' id='TB_closeWindowButton' title='Close'>close</a> or Esc Key</div>"); 		
			
			$("#TB_closeWindowButton").click(tb_remove);
			
			if (!(TB_PrevHTML === "")) {
				function goPrev(){
					if($(document).unbind("click",goPrev)){$(document).unbind("click",goPrev);}
					$("#TB_window").remove();
					$("body").append("<div id='TB_window'></div>");
					tb_show(TB_PrevCaption, TB_PrevURL, imageGroup);
					return false;	
				}
				$("#TB_prev").click(goPrev);
			}
			
			if (!(TB_NextHTML === "")) {		
				function goNext(){
					$("#TB_window").remove();
					$("body").append("<div id='TB_window'></div>");
					tb_show(TB_NextCaption, TB_NextURL, imageGroup);				
					return false;	
				}
				$("#TB_next").click(goNext);
				
			}

			document.onkeydown = function(e){ 	
				if (e == null) { // ie
					keycode = event.keyCode;
				} else { // mozilla
					keycode = e.which;
				}
				if(keycode == 27){ // close
					tb_remove();
				} else if(keycode == 190){ // display previous image
					if(!(TB_NextHTML == "")){
						document.onkeydown = "";
						goNext();
					}
				} else if(keycode == 188){ // display next image
					if(!(TB_PrevHTML == "")){
						document.onkeydown = "";
						goPrev();
					}
				}	
			};
			
			tb_position();
			$("#TB_load").remove();
			$("#TB_ImageOff").click(tb_remove);
			$("#TB_window").css({display:"block"}); //for safari using css instead of show
			};
			
			imgPreloader.src = url;
		}else{//code to show html
			alert(15);
			var queryString = url.replace(/^[^\?]+\??/,'');
			var params = tb_parseQuery( queryString );

			TB_WIDTH = (params['width']*1) + 30 || 630; //defaults to 630 if no paramaters were added to URL
			TB_HEIGHT = (params['height']*1) + 40 || 440; //defaults to 440 if no paramaters were added to URL
			ajaxContentW = TB_WIDTH - 30;
			ajaxContentH = TB_HEIGHT - 45;
			alert(queryString+","+params);
			alert(TB_WIDTH+","+TB_HEIGHT);
			alert(ajaxContentW+","+ajaxContentH);
			if(url.indexOf('TB_iframe') != -1){// either iframe or ajax window	
				/*if(imageGroup=="text"){
					urlNoQuery = url.split('TB_');
					$("#TB_iframeContent1").remove();
					if(params['modal'] != "true"){//iframe no modal
						alert("aa"); 
						$("#TB_window1").append("<div id='TB_title1' ><div id='TB_ajaxWindowTitle1'>"+caption+"</div></div><iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent1' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe("+imageGroup+")' style='width:"+(ajaxContentW + 21)+"px;height:"+(ajaxContentH + 17)+"px;' > </iframe>");
					}else{//iframe modal
						alert("BB");
						$("#TB_overlay1").unbind();
						$("#TB_window1").append("<iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent1' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe("+imageGroup+")' style='width:"+(ajaxContentW + 19)+"px;height:"+(ajaxContentH + 17)+"px;'> </iframe>");
					}

				}else{*/
					alert(16);
					urlNoQuery = url.split('TB_');
					$("#TB_iframeContent").remove();
					alert(18);
					if(params['modal'] != "true"){//iframe no modal
						alert(19);
						$("#TB_window").append("<div id='TB_title' ><div id='TB_ajaxWindowTitle'>"+caption+"</div></div><iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' style='width:"+(ajaxContentW + 21)+"px;height:"+(ajaxContentH + 17)+"px;' onload='tb_showIframe()' > </iframe>");
					}else{//iframe modal
						alert(20);
						$("#TB_overlay").unbind();
						$("#TB_window").append("<iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW + 19)+"px;height:"+(ajaxContentH + 17)+"px;'> </iframe>");
					}
				//}

			}else{// not an iframe, ajax
				alert(17);
					if($("#TB_window").css("display") != "block"){
						alert(21);
						if(params['modal'] != "true"){//ajax no modal
							alert(22);
						$("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton'>close</a> or Esc Key</div></div><div id='TB_ajaxContent' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px'></div>");
						}else{//ajax modal
							alert(23);
						$("#TB_overlay").unbind();
						$("#TB_window").append("<div id='TB_ajaxContent' class='TB_modal' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px;'></div>");	
						}
					}else{//this means the window is already up, we are just loading new content via ajax
						alert(24);
						$("#TB_ajaxContent")[0].style.width = ajaxContentW +"px";
						$("#TB_ajaxContent")[0].style.height = ajaxContentH +"px";
						$("#TB_ajaxContent")[0].scrollTop = 0;
						$("#TB_ajaxWindowTitle").html(caption);
					}
			}
					alert(25);
			$("#TB_closeWindowButton").click(tb_remove);
			alert(26);
				if(url.indexOf('TB_inline') != -1){	
					alert(27);
					$("#TB_ajaxContent").append($('#' + params['inlineId']).children());
					$("#TB_window").unload(function () {
						$('#' + params['inlineId']).append( $("#TB_ajaxContent").children() ); // move elements back when you're finished
					});
					tb_position();
					$("#TB_load").remove();
					$("#TB_window").css({display:"block"}); 
				}else if(url.indexOf('TB_iframe') != -1){
					alert(28);
					tb_position();
					if($.browser.safari){//safari needs help because it will not fire iframe onload
						$("#TB_load").remove();
						$("#TB_window").css({display:"block"});
					}
				}else{
					alert(29);
					$("#TB_ajaxContent").load(url += "&random=" + (new Date().getTime()),function(){//to do a post change this load method
						tb_position();
						$("#TB_load").remove();
						tb_init("#TB_ajaxContent a.thickbox");
						$("#TB_window").css({display:"block"});
					});
				}
			
		}
		alert(30);
		if(!params['modal']){
			alert(31);
			document.onkeyup = function(e){ 	
				if (e == null) { // ie
					keycode = event.keyCode;
				} else { // mozilla
					keycode = e.which;
				}
				if(keycode == 27){ // close
					tb_remove();
				}	
			};
		}
		
	} catch(e) {
		//nothing here
	}
}

//helper functions below
function tb_showIframe(){
	alert(33);
	$("#TB_load").remove();
/*	if(imageGroup=="text"){
		$("#TB_window1").css({display:"block"});
	}else{*/
	$("#TB_window").css({display:"block"});
	//}
}

function tb_remove() {
 	$("#TB_imageOff").unbind("click");
	$("#TB_closeWindowButton").unbind("click");
	$("#TB_window").fadeOut("fast",function(){
		//手动移除ifrmae,IE的一个bug
		$('#TB_iframeContent').remove();
		$('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});
	$("#TB_load").remove();
	/**////自己调用垃圾回收,强制清楚iframe内存,解决文本框无法输入问题。
	CollectGarbage();
	if (typeof document.getElementsByTagName("body")[0].style.maxHeight == "undefined") {//if IE 6
		$("body","html").css({height: "auto", width: "auto"});
		$("html").css("overflow","");
	}
	document.onkeydown = "";
	document.onkeyup = "";
	return false;
}

function tb_removeWithRwfrash() {
 	$("#TB_imageOff").unbind("click");
	$("#TB_closeWindowButton").unbind("click");
	$("#TB_window").fadeOut("fast",function(){$('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});
	$("#TB_load").remove();
	if (typeof document.getElementsByTagName("body")[0].style.maxHeight == "undefined") {//if IE 6
		$("body","html").css({height: "auto", width: "auto"});
		$("html").css("overflow","");
	}
	document.onkeydown = "";
	document.onkeyup = "";
	window.location.reload();
	return false;
}

function tb_position() {
$("#TB_window").css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
	if ( !(jQuery.browser.msie && jQuery.browser.version < 7)) { // take away IE6
		$("#TB_window").css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
	}
}

function tb_parseQuery ( query ) {
   var Params = {};
   if ( ! query ) {return Params;}// return empty object
   var Pairs = query.split(/[;&]/);
   for ( var i = 0; i < Pairs.length; i++ ) {
      var KeyVal = Pairs[i].split('=');
      if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
      var key = unescape( KeyVal[0] );
      var val = unescape( KeyVal[1] );
      val = val.replace(/\+/g, ' ');
      Params[key] = val;
   }
   return Params;
}

function tb_getPageSize(){
	var de = document.documentElement;
	var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.getElementsByTagName("body")[0].clientWidth;
	var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.getElementsByTagName("body")[0].clientHeight;
	arrayPageSize = [w,h];
	return arrayPageSize;
}

function tb_detectMacXFF() {
	alert(8);
  var userAgent = navigator.userAgent.toLowerCase();
  alert(userAgent);
  if (userAgent.indexOf('mac') != -1 && userAgent.indexOf('firefox')!=-1) {
  	alert(9);
    return true;
  }
}





问题在
$("#TB_window").append("<div id='TB_title' ><div id='TB_ajaxWindowTitle'>"+caption+"</div></div><iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' style='width:"+(ajaxContentW + 21)+"px;height:"+(ajaxContentH + 17)+"px;' onload='tb_showIframe()' > </iframe>");
此句执行的时候出现问题
5 楼 my249645546 2012-09-07  
hebsxl 写道
您 需要哪一块的代码呢? 需要我把这几个调用的页面给你发过来 看看嘛?

你把iframe1 的代码 给我看看 包括html 和js代码
4 楼 hebsxl 2012-09-07  
您 需要哪一块的代码呢? 需要我把这几个调用的页面给你发过来 看看嘛?
3 楼 hebsxl 2012-09-07  
my249645546 写道
hebsxl 写道
您好   在开发中遇到与您相同的问题, 如果看到请回复我一下,有问题想此寻一下您

你好!有什么可以帮忙的?你可以给我发送站内短信 可以的话 把代码贴出来 帮你看看



您好,是这样的,这个项目中用到了个插件  thickbox  是一种弹出iframe页面的插件

在其他浏览器都没有什么问题,ie6下  当我首先在页面中第一次用到这个插件的时候能正常显示,页面中间显示iframe1,然后在这个iframe1里有链接,需要再次调用这个插件,在这个已经弹出的iframe1里再弹出一个iframe2,这时候页面报错

这个错误在网上搜索了一下,大概明白是因为页面显示不全

我用了这么几种方法:
1.在iframe1中  js设置为defer='defer'
2.iframe1的 弹出iframe2的onclick事件放在 body的onload里面
3.在iframe1调用的弹出方法,用window.parent 方法 调用父类弹窗

这些操作都不行  想请问您这个大概问题出在哪,您有好一点的办法解决吗?
2 楼 my249645546 2012-09-07  
hebsxl 写道
您好   在开发中遇到与您相同的问题, 如果看到请回复我一下,有问题想此寻一下您

你好!有什么可以帮忙的?你可以给我发送站内短信 可以的话 把代码贴出来 帮你看看
1 楼 hebsxl 2012-09-06  
您好   在开发中遇到与您相同的问题, 如果看到请回复我一下,有问题想此寻一下您

相关推荐

    在IE6下发生Internet Explorer cannot open the Internet site错误

    在IE6浏览器中,用户可能会遇到“Internet Explorer cannot open the Internet site”的错误,尤其是在页面尚未完全加载时,尝试执行一个生成iframe的脚本事件。这个问题的根源在于IE6对DOM操作的特定处理方式,以及...

    IE6(Internet Explorer 6)绿色版,免安装版

    Internet Explorer 6(简称IE6)是微软公司于2001年推出的一款Web浏览器,作为Windows XP操作系统的一部分发布。这款浏览器在当时具有一定的创新性,引入了多项新特性,如PNG图像支持、CSS层叠样式表的增强以及...

    Internet Explorer 10(IE10) X86 中文版.zip

    如果你使用的是其他操作系统,将无法安装 Internet Explorer 10 Release Preview。要了解你的电脑是否支持 Internet Explorer 10,请查看系统要求。 IE10只支持Windows 7 SP1 32位和64位系统和Windows Server 2008 ...

    IE11补丁,Internet Explorer 11补丁

    Internet Explorer 11(简称IE11)是微软公司开发的一款经典Web浏览器,虽然已被Edge取代,但在许多企业和老旧系统中仍然广泛使用。在安装或更新IE11时,有时会遇到提示需要更新系统的情况,这通常是由于系统中缺少...

    Internet Explorer 5.5正式版安装程序,适合Windows 98

    在这个时期,Microsoft的Internet Explorer(IE)是市场上的主导者,它与当时的操作系统Windows紧密集成,提供了便捷的网络浏览体验。Internet Explorer 5.5正是这个时期的代表产品,它是IE系列的一个关键版本,对...

    Internet Explorer 6 IE6

    标题:“Internet Explorer 6 (IE6)” 描述:“Internet Explorer 6 for win95 win98 winme”表明这是一个专为Windows 95、Windows 98和Windows Millennium Edition (WinMe) 设计的浏览器版本。 **知识点详解:** ...

    去掉IE提示:internet explorer 已限制此网页运行脚本或Activex控件

    在使用Internet Explorer浏览器访问某些包含脚本或ActiveX控件的网页时,用户可能会遇到一个警告提示:“Internet Explorer已限制此网页运行脚本或ActiveX控件”,这通常是为了防止潜在的安全风险而采取的一项保护...

    IE8(Microsoft Internet Explorer 8)绿色版

    **IE8(Microsoft Internet Explorer 8)绿色版详解** IE8,全称为Microsoft Internet Explorer 8,是由微软公司开发的一款著名的网页浏览器。作为Internet Explorer系列的第八个版本,它在2009年正式发布,引入了...

    ie6sp1forwindows2000

    标题“ie6sp1forwindows2000”指的是Internet Explorer 6 Service Pack 1,这是微软为Windows 2000操作系统发布的浏览器版本。这个服务包是针对IE6的一个重要更新,它包含了自IE6初始发布以来的一系列修复、改进和...

    Internet Explorer10-Windows7绿化版本

    "Internet Explorer 10-Windows 7绿化版本" 指的是针对Windows 7操作系统的一个特别优化的Internet Explorer 10浏览器版本。绿化版本通常指的是不需要正式安装,只需解压就能使用的软件,它不写入系统注册表,避免对...

    IE6.0sp1-KB823353-x86-CHS.rar_IE6.0S_IE6.0升级包_IE6.X_ie6 X86_ie6.

    Internet Explorer 6.0(简称IE6)是微软在2001年推出的一款网页浏览器,它是Windows XP操作系统的一部分。尽管随着时间的推移,IE6逐渐暴露出许多安全问题,但因其在当时被广泛使用,因此微软持续为其发布了多个...

    绿色Internet Explorer IE6

    在互联网发展的早期阶段,Microsoft Internet Explorer(简称IE)是全球最广泛使用的网络浏览器之一,尤其是IE6版本,它在2001年发布后,因其内置的安全特性、对ActiveX的支持以及与Windows操作系统的紧密集成而受到...

    Internet Explorer已停止工作

    "Internet Explorer已停止工作"是许多Windows用户在使用这款经典浏览器时经常遇到的问题,尤其是在Windows 7和Windows 8操作系统中。这个问题可能由于多种因素引起,导致浏览器性能下降,甚至频繁崩溃。解决这个问题...

    Internet Explorer(IE 8)

    "IE8, IE, IE6, IE7, IE9" 这些标签展示了Internet Explorer浏览器不同版本的迭代。IE6至IE9分别代表了该浏览器从第六代到第九代的发展历程。每个版本都有其独特的特点和改进,例如IE6是2001年的产品,而IE9则在2011...

    Win10系统IE出错提示“internet explorer已停止工作”怎么办.docx

    按照上述步骤操作后,IE 浏览器应该不会再频繁地弹出“Internet Explorer 已停止工作”的错误提示,用户可以正常地使用 IE 浏览器浏览网页。 结论 解决“Internet Explorer 已停止工作”的错误提示需要了解 IE ...

    Internet explorer 11离线安装包

    标题 "Internet explorer 11离线安装包" 指的是微软公司开发的网页浏览器Internet Explorer的第11个版本的离线安装程序。这个版本是专为Windows 7操作系统设计的,允许用户在没有互联网连接的情况下安装浏览器。离线...

    IE6.zip_ADVAUTH.CAB ie6_ie6 ielpkzht.cab_ie6 mpcdcs.cab_site:www

    标题中的"IE6.zip_ADVAUTH.CAB ie6_ie6 ielpkzht.cab_ie6 mpcdcs.cab_site:www"提及了几个关键元素,这些元素与微软的Internet Explorer 6(简称IE6)浏览器的更新和组件有关。`ADVAUTH.CAB`、`ielpkzht.cab`和`...

    IE6(Microsoft Internet Explorer6) 绿色版 简捷适用

    本软件是IE6浏览器绿色版,解压后点击EXE文件就能启动浏览器。适用于诸多电脑windows系统,尤其是32位的windows xp电脑。

    安装IE8提示“Internet Explorer安装尚未完成”.docx

    在安装Internet Explorer 8 (IE8)时,有时可能会遇到“Internet Explorer安装尚未完成”的错误提示,这可能是由于多种原因导致的。以下是一些可能的解决方案和相关知识点: 1. **冲突的第三方软件**:安装过程中,...

Global site tag (gtag.js) - Google Analytics