原生js实现百度联想词功能
<!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>Document</title>
</head>
<style>
* {
padding: 0;
margin: 0;
}
#box {
margin: 100px;
}
#wd {
width: 400px;
height: 40px;
}
#list {
display: none;
width: 400px;
border: 1px solid #ccc;
}
li {
list-style: none;
padding: 5px;
}
a {
text-decoration: none;
color: #333;
}
</style>
<body>
<div id="box">
<input type="text" id="wd">
<ul id="li