带有自定义表单的Google CSE

时间:2013-02-20 13:54:03

标签: php html forms search-engine google-custom-search

我的页面顶部有一个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?

1 个答案:

答案 0 :(得分:6)

似乎没有人决定回答,我自己找到了。

    <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,位于控制面板的“基本”页面上。