我有一個視圖,我在我的GWT應用程序中創建了一個視圖,並且想要嵌入/使用twitter提供的其中一個Twitter小部件(如此類http://twitter.com/about/resources/widgets/widget_search)。他們插入的方式是用腳本寫出適當的html。我嘗試過不同的方式來插入它,但我無法使它工作 - 我們通過將它放入一個iFrame中,但確實出現了其他問題。如何將Twitter小部件插入GWT視圖
下面是一些示例代碼,Twitter提供給插入:
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'search',
search: 'rainbow',
interval: 30000,
title: 'It\'s a double rainbow',
subject: 'Across the sky',
width: 250,
height: 300,
theme: {
shell: {
background: '#8ec1da',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#444444',
links: '#1985b5'
}
},
features: {
scrollbar: false,
loop: true,
live: true,
behavior: 'default'
}
}).render().start();
</script>