Files
ClassContent/历届学生/刘合群/10-27 /demo.html
2024-09-27 02:06:13 +08:00

44 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>搜索引擎</title>
</head>
<body>
<div class="search">
<select id="menu" >
<option value="null">--请选择--</option>
<option value="https://www.baidu.com/s?wd=">百度搜索</option>
<option value="https://www.so.com/s?q=">360搜索</option>
<option value="https://www.sogou.com/web?query=">搜狗搜索</option>
</select>
<input type="text" placeholder="请输入要检索的内容" id="keyword">
<button onclick="Search()">搜索</button>
</div>
<script>
function Search() {
var key = document.getElementById("keyword")
var sou = document.getElementById("menu")
if (sou.selectedIndex === 0 || key.value.length === 0) {
alert("请检查是否选择搜索引擎和输入关键词")
}else {
open(sou.options[sou.selectedIndex].value+key.value)
}
}
</script>
</body>
</html>