实现百度一下页面效果代码
时间: 2024-11-13 22:41:56 浏览: 3
实现"百度一下"页面效果通常涉及到JavaScript、HTML和CSS。这里是一个简单的静态模拟示例,实际的百度搜索会需要连接到百度API并使用Ajax技术:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<title>Baidu Search</title>
<style>
.search-form {
position: relative;
width: 400px;
}
input[type=text] {
width: 100%;
padding: 10px;
font-size: 16px;
border: none;
background-color: #f2f2f2;
}
button {
position: absolute;
top: 10px;
right: 10px;
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<div class="search-form">
<input type="text" id="search-input" placeholder="输入关键词">
<button onclick="search()">百度一下</button>
</div>
<script>
function search() {
var query = document.getElementById('search-input').value;
window.location.href = "https://www.baidu.com/s?wd=" + encodeURIComponent(query);
}
</script>
</body>
</html>
```
这个代码片段创建了一个简单的搜索框,用户输入关键词后点击按钮,会跳转到百度搜索结果页,关键词将作为URL参数传递。
阅读全文