JS实现同时搜索百度和必应的方法

这里实现同时搜索百度和必应的功能,输入关键字,点击“搜一下”按钮,两个搜索引擎的结果在同个页面打开,方便。

将下面这两个htm文件保存,放在同一个文件夹下,打开第一个文件就可以了。
index.htm的代码:

复制代码 代码如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>同时搜索百度和必应</title>
<meta http-equiv="keywords" content="同时搜索百度和必应">
<meta http-equiv="description" content="同时搜索百度和必应">
</head>

<!--<body>
-->
<frameset rows="30%,70%">
<frame src="https://www.jb51.net/keleyi.htm">
</frame>
<frameset cols="45%,45%">
<frame src="https://www.jb51.net/images/baidu.jpg"></frame>
<frame src="https://www.jb51.net/images/baidu.jpg"></frame>
</frameset>
</frameset>

<!--<iframe ></iframe>
<iframe ></iframe>
</body>-->
</html>

第二个的文件名为keleyi.htm

keleyi.htm的代码如下:

复制代码 代码如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>同时搜索百度和必应</title>

<meta http-equiv="keywords" content="同时搜索百度和必应">
<meta http-equiv="description" content="同时搜索百度和必应">

<!--<link type="text/css" href="https://www.jb51.net/article/styles.css">-->
<script type="text/javascript">
function $(id) {
return document.getElementById(id);
}
function mixSearch() {
var okeyword = $("keyword");
var oForm = $("searchForm");
//提交给百度,构造地址参数
oForm.action = "http://www.baidu.com/s";
okeyword.name = "wd";
oForm.method = "get";
oForm.target = "baiduFrame";
oForm.submit();
//提交给bing,构造地址参数
oForm.action = "http://hk.bing.com/search";
okeyword.name = "q";
oForm.method = "get";
oForm.target = "bingFrame";
oForm.submit();
}
</script>
</head>

<body>
<form action="" method="get" target="baiduFrame">
<input type="text" value="" />
<input type="button" value="搜一下~" />
</form>
<hr />

</body>
</html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgfpss.html