0
我想知道如何在HTML代碼中製作維基百科搜索小工具。這個小工具用於我正在處理的個人博客。是否有可能在HTML中製作維基百科搜索小工具?
我想知道如何在HTML代碼中製作維基百科搜索小工具。這個小工具用於我正在處理的個人博客。是否有可能在HTML中製作維基百科搜索小工具?
通過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://www.askdavetaylor.com/add_wikipedia_search_box_to_my_web_site_or_blog.html – 2012-03-07 16:47:42
看,我真的不知道你的意思。你可以把它的代碼 – EandCProducts 2012-03-07 16:48:49
@EandCProducts請參閱我上面的評論中的鏈接 – 2012-03-07 16:49:40