Files
ClassContent/历届学生/front-end-team/每天课程/2022-03-23/index.html
2024-09-27 02:06:13 +08:00

35 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<select name="" id="">
<option value="null">-请选择搜索引擎-</option>
<option value="https://www.baidu.com/s?wd=">百度</option>
<option value="https://www.google.com.hk/search?q=">谷歌</option>
<option value="https://www.so.com/s?q=">360搜索</option>
</select>
<input type="text" placeholder="输入关键字">
<button>搜索</button>
</body>
<script>
var button = document.querySelector("button"),
searchKeyWord = document.querySelector("input"),
select = document.querySelector("select");
button.onclick = function () {
var youSelect = select.selectedOptions[0].value;
if (youSelect == "null") {
alert("请选择搜索引擎")
} else {
open(`${youSelect}${searchKeyWord.value}`)
}
}
</script>
</html>