このGoogleニューススクリプトを調整するには、変数を使用して、現在の年と月をブール検索に配置します。具体的には、「tabbed.execute(...?」で始まる行)を調整します。
私の最終的な目標は、このスクリプトが現在の年と月のコンテキストで検索語を返すようにすることです。初心者を助けてくれてありがとう!
google.load('search', '1');
function OnLoad() {
// create a tabbed mode search control
var tabbed = new google.search.SearchControl();
// create our searchers. There will now be 4 tabs.
tabbed.addSearcher(new google.search.VideoSearch());
tabbed.addSearcher(new google.search.NewsSearch());
tabbed.addSearcher(new google.search.BlogSearch());
tabbed.addSearcher(new google.search.ImageSearch());
// draw in tabbed layout mode
var drawOptions = new google.search.DrawOptions();
drawOptions.setDrawMode(google.search.SearchControl.DRAW_MODE_TABBED);
// Draw the tabbed view in the content div
tabbed.draw(document.getElementById("stephennews"), drawOptions);
// Search!
tabbed.execute("'SEARCHTERM1' AND 'SEARCHTERM2' AND '2013' AND 'MARCH'");
}
google.setOnLoadCallback(OnLoad);