是否可以用HTML制作维基百科搜索小工具?

时间:2012-03-07 16:43:26

标签: html search wikipedia

我想知道如何用HTML代码制作维基百科搜索小工具。这个小工具适用于我正在处理的个人博客。

1 个答案:

答案 0 :(得分:2)

通过ajax等在提交或加载目标页面时构建重定向的表单。

http://en.wikipedia.org/w/index.php?title=Spezial%3ASuche&search=%s

%s是您的搜索查询。像:
http://en.wikipedia.org/w/index.php?title=Spezial%3ASuche&search=test

<form method="GET" action="http://en.wikipedia.org/w/index.php">
    <input type="hidden" name="title" value="Spezial%3ASuche" />    
    <input type="text" name="search" />
    <input type="submit" value="Search" />
</form>

<强>示例
http://jsfiddle.net/CkK3j/