我想制作一个“iGoogle 小工具”来更改 igoogle 页面上的搜索框。
到目前为止,这是我的代码:
<script type="text/javascript">
function bing(){
document.getElementById('sfrm').action="http://www.bing.com/search";
}
</script>
<input type="button" onclick="bing()" value="Search"><br>with Bing.
我已经使用单独页面上的页面搜索框代码对其进行了简要测试,并且它有效。
它是否因为它在框架中而不起作用?如果有,有解决办法吗?