我想知道如何用HTML代码制作维基百科搜索小工具。这个小工具适用于我正在处理的个人博客。
答案 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/