2

我的页面顶部有一个 GET 表单,但尚未配置。我所拥有的就是:

    <div class="top-search">
        <form  method="get" id="searchform" action="#">
            <div>
                <input type="text" value="Search..." name="s" id="s" onfocus="defaultInput(this)" onblur="clearInput(this)" />
                <input type="submit" id="searchsubmit" value=" " />
            </div>
        </form>
    </div>

如何操纵它以使用 Google CSE?

4

1 回答 1

7

似乎没有人决定回答它,我自己发现了。

    <div class="top-search">
        <form id="searchform" action="http://www.google.com/cse">
            <div>
                <input type="hidden" name="cx" value="xxxx" />
                <input type="hidden" name="ie" value="UTF-8" />
                <input type="text" value="" name="q" id="q" autocomplete="off" />
                <input type="submit" id="searchsubmit" name="sa" value=" " />
            </div>
        </form>

    </div>

其中“xxxx”是您的搜索引擎唯一 ID,可在控制面板的“基本信息”页面上找到。

于 2013-02-22T14:13:59.793 回答