雖然這可能非常簡單,但我無法弄清楚如何使用我的網站CSS自定義Google自定義搜索欄API。我曾嘗試應用幾個預定義的css類與寬度限制div
,但它似乎搜索欄它仍然與樣式和iframe
看。如何使用自己的CSS自定義Google自定義搜索欄API
這是我的代碼:我如何應用CSS給它
<html>
<head>
<div width="100%" id="cse" style="width: 100%;">Loading</div>
<script src="http://www.google.com/jsapi" type="text/javascript">
</script>
<script type="text/javascript">
google.load('search', '1', {language: 'en', style: google.loader.themes.V2_DEFAULT});
google.setOnLoadCallback(function() {
var customSearchOptions = {};
var customSearchControl = new google.search.CustomSearchControl('009437919812836441502:rka9ujkwvwe', customSearchOptions);
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
customSearchControl.draw('cse');
}, true);
</script>
</head>
</html>
或者是有可能呢?
我相信這是不可能的。我嘗試了一次,然後這是不可能的,但從那時起事情可能發生了變化。 – GolezTrol