Skip to content

Instantly share code, notes, and snippets.

@GeekSnail
Last active April 3, 2019 14:43
Show Gist options
  • Save GeekSnail/a7d360b6227f726f9ffaf0bcdc5df765 to your computer and use it in GitHub Desktop.
Save GeekSnail/a7d360b6227f726f9ffaf0bcdc5df765 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="https://api.map.baidu.com/api?v=2.0&ak=4IU3oIAMpZhfWZsMu7xzqBBAf6vMHcoa">
</script>
<title>
关键字输入提示词条
</title>
</head>
<!-- https://blog.csdn.net/happy_meng/article/details/78889322 -->
<body>
<div id="r-result">
请输入:
<input type="text" id="suggestId" size="20" value="百度" style="width:150px;"
/>
</div>
<div id="searchResultPanel" style="border:1px solid #C0C0C0;width:150px;height:auto; display:none;">
</div>
</body>
<script type="text/javascript">
var ac = new BMap.Autocomplete( //建立一个自动完成的对象
{
"input": "suggestId"
});
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment