1.運行regedit打開註冊表編輯器
2.找到\HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\
3.添加新搜索項,如NewSearch
4.在NewSearch中新建字符串項"DisplayName",並賦值爲新搜索引擎的名稱,該名稱將顯示在IE8搜索框內
5.在NewSearch中新建字符串項"URL"並賦值搜索引擎URL,如"http://so.csdn.net/search?t=thread&q={searchTerms}"
6.修改SearchScopes中DefaultScope值爲"NewSearch",肯定默認搜索引擎,該值亦可經過IE8的"管理搜索引擎"功能來設置
7.重啓IE8後可直接利用搜索框進行指定搜索。編輯器
下面給出常見搜索引擎的URL:
博客園 http://zzk.cnblogs.com/s?t=b&w={searchTerms}
CSDN http://so.csdn.net/search?t=thread&q={searchTerms}
百度知道 http://zhidao.baidu.com/search?word={searchTerms}&pn=0&ie=utf8&rn=10&lm=0&fr=search
搜索引擎
搜索文本中含有中文時,一樣能夠得到正確的搜索結果,但有些搜索頁面搜索框中顯示亂碼。
這是由於由IE搜索框傳入的文本爲UTF-8編碼,而該頁面搜索框是以ANSI進行解碼顯示的,不影響搜索使用。編碼
可將下面的腳本語句保存爲.reg文件執行.net
Windows Registry Editor Version 5.00blog
reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\cnblogs"索引
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\cnblogs]
"DisplayName"="博客園"
"URL"="http://zzk.cnblogs.com/s?t=b&w={searchTerms}"字符串
reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\CSDN"get
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\CSDN]
"DisplayName"="CSDN"
"URL"="http://so.csdn.net/search?t=thread&q={searchTerms}"博客
reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\zhidao"it
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\zhidao]
"DisplayName"="百度知道"
"URL"="http://zhidao.baidu.com/search?word={searchTerms}&pn=0&ie=utf8&rn=10&lm=0&fr=search"