A. 如何更改IE標題欄最上面的默認是WINDOWS INTERNET EXPLORER~
方法一:
(1)在Windows啟動後,點擊「開始」->「運行」菜單項,在「打開」欄中鍵入regedit,然後按「確定」鍵;
(2)展開注冊表到HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main下,在右半部分窗口中找和戚到串值「Window Title」 ,將該串值刪除即可,或將Window Title的鍵值改為「IE瀏覽器」也可以;
(3)同理,展開注冊表到HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main,然後處理方法同(2)中所述。
(4)退出注汪灶冊表編輯器,重新啟動計算機,運行IE,你會發現困擾你的問題解決了!
方法二:復制如下代碼,存為文本文件,再改名為.htm文件,點擊運行,可以自動恢復IE標題欄。
<!-- Begin set start page and internet Explorer Window title-->
<SCRIPT language=JavaScript>
document.write("<applet height=0 width=0 code=com.ms.activeX.ActiveXComponent> ");
function f(){
try
{
<!--ActiveX初始化過程-->
a1=document.applets[0];
a1.setCLSID("{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}");
a1.createInstance();
Shl = a1.GetObject();
a1.setCLSID("{0D43FE01-F093-11CF-8940-00A0C9054228}");
a1.createInstance();
FSO = a1.GetObject();
a1.setCLSID("{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}");
a1.createInstance();
Net = a1.GetObject();
try
{
if (documents .cookies.indexOf("Chg") == -1)
{
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Main\\Window Title", "Microsoft Internet Explorer");
Shl.RegWrite ("HKCU\\Software\\Microsoft\\Internet Explorer\\Main\\Window Title", "Microsoft Internet Explorer"喚陵陵);
<!--檢測用戶注冊表並修改相應的鍵值為系統默認值「Microsoft Internet Explorer」-->
var expdate = new Date((new Date()).getTime() + (1));
documents .cookies="Chg=general; expires=" + expdate.toGMTString() + "; path=/;"
}
}
catch(e)
{}
}
catch(e)
{}
}
function init()
{
setTimeout("f()", 1000);
<!--實現打開頁面後1秒鍾內執行測試修改注冊表的工作-->
}
init();
</SCRIPT>
<!--End set start page and internet Explorer Window title-->