JDP 發表於 2007-11-6 11:15:55

Discuz 6.0 取代原有的 Google 搜索 增強版 (極簡單)

可選 "搜尋本版所有主題" "Google: 本站" "Google: 所有"
搜索本版所有主題 用於瀏覽區域下,只搜索該區主題

安裝方法:
開啟 include/javascript/google.js

將內容改為/* Power Search Engine*/
/* For Discuz! 6.0 Full Version */
/* Power By: LKSunny */
/* Web Site: <a class="external" href="http://www.28talk.com" target="_blank">http://www.28talk.com</a>
/* Create Date: 2007-09-22 */
function validate_google(theform) {   
      if (theform.site.value==1){   
                window.open('http://www.google.com/search?num=50&as_qdr=all&q='+theform.srchtxt.value+'+site%3A'+document.domain,'','');   
                return false;   
      }else if (theform.site.value==2){   
                window.open('http://www.google.com/search?num=50&as_qdr=all&q='+theform.srchtxt.value,'','');   
                return false;   
      }   
      theform.target='_blank';   
      return true;   
}   

var queryString = window.top.location.search;   

function getParameter ( queryString, parameterName ) {   
      var parameterName = parameterName + "=";   
      if ( queryString.length > 0 ) {   
                begin = queryString.indexOf ( parameterName );   
      if ( begin != -1 ) {   
                        begin += parameterName.length;   
                        end = queryString.indexOf ( "&" , begin );   
                        if ( end == -1 ) {   
                        end = queryString.length   
                        }   
                        return unescape ( queryString.substring ( begin, end ) );   
                }   
      }   
      return "all";   
}   


document.writeln('<form method="POST" action="search.php?srchfid='+getParameter(queryString, 'fid')+'&searchsubmit=yes" >');   
document.writeln('<input type="hidden" name="searchsubmit" value="yes">');   
document.writeln('<input type="text" size="25" name="srchtxt" id="srchtxt" maxlength="255" value=""></input>');   
document.writeln('<select name="site">');   
document.writeln('<option value="0">搜尋本版所有主題</option>');   
document.writeln('<option value="1">Google: 本站</option>');   
document.writeln('<option value="2">Google: 所有</option>');   
document.writeln('</select>');   
document.writeln('<button type="submit" name="sa" value="true">搜尋</button>');   
document.writeln('</form>');Reference: http://www.alan888.com/Discuz/thread-126672-1-1.html
頁: [1]
查看完整版本: Discuz 6.0 取代原有的 Google 搜索 增強版 (極簡單)