在我的谷歌API mash代码中,如何更新现有的新闻框而不是插入新闻框?

时间:2010-05-21 11:04:28

标签: google-api google-ajax-api

以下是使用的Javascript代码。

 google.load("elements", "1", {packages : ["newsshow"]});  
 function loadNews(newsQuery)
        {
            //Load the news feed according to the topic selected
            var options = 
            {
                "format": "300x250",
                "queryList" : 
                [
                    {
                        "title" : newsQuery,  
                        "q"     : newsQuery
                    }
                ]
            }
            var content = document.getElementById('content');
            var newsShow = new google.elements.NewsShow(content, options);
        }

newsAddress值是用户输入的文本框值。并且基于文本框值,div元素'content'将使用新元素进行更新。

我的问题是,每当我在文本框(newsAddress)中输入值时,'content'元素中的新闻项就会一个接一个地插入。我的要求是根据新的搜索条件更新相同的新闻元素。

如何做到这一点?

0 个答案:

没有答案