如何在XP系统中打造一个桌面搜索引擎?以往我们使用搜索引擎都需要先打开浏览器,再加载并搜索一些结果,如果有需要,我们其实可以将搜索引擎的搜索框放在桌面的,这样方便我们快速进行搜索之用,具体步骤见下文。
如何在XP系统中打造一个桌面搜索引擎?
1、打开记事本,输入以下内容:
01<html>
02<head>
03<title>百度搜索<title>
04<body>
05<form action="" target="_blank">
06<table bgcolor="#FFFFFF"><tr><td>
07<input name=tn type=hidden value=baidu>
08<a href=http://www.xitongzhijia.net/xtjc/20170519/"http:/www.baidu.com/"><ing src="http:/img.baidu.com/img/logo/-80px.gif">
09alt="Baidu" align="bottom" border="0"</a>
10<input type=text name=word size=30>
11<input type="submit" value="百度搜索">
12</td></tr></table>
13</form>
14</body>
15</html>
复制代码<html> <head> <title>百度搜索<title> <body> <form action="" target="_blank"> <table bgcolor="#FFFFFF"><tr><td> <input name=tn type=hidden value=baidu> <a href=http://www.xitongzhijia.net/xtjc/20170519/"http:/www.baidu.com/"><ing src="http:/img.baidu.com/img/logo/-80px.gif"> alt="Baidu" align="bottom" border="0"</a> <input type=text name=word size=30> <input type="submit" value="百度搜索"> </td></tr></table> </form> </body> </html>