17 lines
422 B
HTML
17 lines
422 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>知识库搜索助手</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<input id="searchInput" type="text" placeholder="输入关键词,多个用空格分隔..." />
|
|
<button id="searchBtn">搜索</button>
|
|
<ul id="results"></ul>
|
|
</div>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|