function doBuilder(){
var strName = document.getElementById("sName").value.replace (/^s+|s+$/g,'');
var strURI = document.getElementById("sURI").value.replace (/^s+|s+$/g,'');
var strEncoding = document.getElementById("Encoding").value;
if (strURI.length<1) { alert ("u8BF7u8F93u5165u641Cu7D22u7ED3u679Cu9875u7684 URLu3002."); document.getElementById("sURI").focus(); return false;}
if (strURI.indexOf("TEST")<0) { alert ("u641Cu7D22u7ED3u679C URL u5FC5u987Bu5305u542Bu201CTESTu201Du4E00u8BCDu3002u8BF7u68C0u67E5 URLu3002nu6B64u5DE5u5177u53EFu80FDu4E0Du80FDu7528u6765u4E3Au8BE5u641Cu7D22u5F15u64CEu751Fu6210u67E5u8BE2u3002."); document.getElementById("sURI").focus(); return false;}
if (strName.length<1) { alert ("u8BF7u4E3Au65B0u641Cu7D22u63D0u4F9Bu7A0Bu5E8Fu8F93u5165u4E00u4E2Au540Du79F0."); document.getElementById("sName").focus(); return false;}
var strQuery = "Encoding="+ encodeURIComponent(strEncoding) + "&Name=" + encodeURIComponent(strName) + "&URI=" + encodeURIComponent(strURI);
var strAddURI = "http://www.microsoft.com/windows/ie/searchguide/spbuilder.mspx?" + strQuery;
//alert(strAddURI);
try{
window.external.AddSearchProvider(strAddURI);
}
catch(eX){
alert("u6DFBu52A0u641Cu7D22u63D0u4F9Bu7A0Bu5E8Fu5931u8D25u3002nu60A8u4F7Fu7528u7684u662F IE7 u5417uFF1Fnu5C1Du8BD5u4F7Fu7528u9F20u6807u5355u51FBu5B89u88C5u6309u94AEu3002.");
}
return false;
}
function doView(bDownload){
var strName = document.getElementById("sName").value.replace (/^s+|s+$/g,'');
var strURI = document.getElementById("sURI").value.replace (/^s+|s+$/g,'');
var strEncoding = document.getElementById("Encoding").value;
if (strURI.length<1) { alert ("u8BF7u8F93u5165u641Cu7D22u7ED3u679Cu9875u7684 URLu3002."); document.getElementById("sURI").focus(); return false;}
if (strURI.indexOf("TEST")<0) { alert ("u641Cu7D22u7ED3u679C URL u5FC5u987Bu5305u542Bu201CTESTu201Du4E00u8BCDu3002u8BF7u68C0u67E5 URLu3002nu6B64u5DE5u5177u53EFu80FDu4E0Du80FDu7528u6765u4E3Au8BE5u641Cu7D22u5F15u64CEu751Fu6210u67E5u8BE2u3002."); document.getElementById("sURI").focus(); return false;}
if (strName.length<1) { alert ("u8BF7u4E3Au65B0u641Cu7D22u63D0u4F9Bu7A0Bu5E8Fu8F93u5165u4E00u4E2Au540Du79F0."); document.getElementById("sName").focus(); return false;}
var strQuery = "Encoding="+ encodeURIComponent(strEncoding) + "&Name=" + encodeURIComponent(strName) + "&URI=" + encodeURIComponent(strURI);
if (bDownload==1) strQuery = "dl=1&" + strQuery;
var strAddURI = "http://www.microsoft.com/windows/ie/searchguide/spbuilder.mspx?" + strQuery;
//alert(strAddURI);
window.location = strAddURI;
return false;
}
这是我常用的搜索引擎。用 IE7 打开就可添加。
