是否可以將搜索變量傳遞到我已嵌入到我的網站上的Google自定義搜索引擎?我可以讓搜索引擎工作,但我無法通過POST(它來自網站其他頁面上的搜索按鈕)傳遞一個字詞將變量傳遞給Google自定義搜索引擎
我試圖破解我在此處找到的代碼:http://code.google.com/apis/ajax/playground/?exp=search#hello_world
而且這是我迄今爲止...($ q是我傳遞給它的期限)
<script type="text/javascript">
google.load('search', '1', {language : 'en'});
function OnLoad()
{
var customSearchControl = new google.search.CustomSearchControl('***my key****');
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
customSearchControl.draw('cse');
searchControl.execute("$q");
}
google.setOnLoadCallback(OnLoad);
</script>
感謝
謝謝!我一直把我的頭髮拉出來,它完美的工作。再次感謝! – Matt 2010-03-08 18:46:53