我正在尝试创建一个包含重定向到bing的搜索栏的网站。例如:当我键入"颜色为蓝色"它将页面重定向到http://www.bing.com/search?q=the+color+blue。我想使用与lmgtfy相同的方法。
答案 0 :(得分:2)
将以下代码保存在文件中,以便您轻松了解您要完成的任务。
<html>
<head>
</head>
<body>
<div>
<h1>Page redirects to a bing search</h1>
<form method="GET" action="http://www.bing.com/search">
<input type="text" name="q" id="q" value="enter your search here">
<input type="submit" value="Lookup">
</form>
</div>
</body>
</html>