我需要制作一个网页,上面会居中显示一个文本框和一个按钮,当我点击按钮的时候,会将文本框里的内容以一个提示框的形式弹出,请给我这份HTML代码
时间: 2023-08-31 18:30:00 浏览: 147
### 回答1:
。
好的,以下是一份简单的HTML代码,实现了您描述的功能:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>网页</title>
<style>
.center {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
</style>
</head>
<body>
<div class="center">
<div>
<input type="text" id="textInput">
<button onclick="alert(document.getElementById('textInput').value)">点击弹出</button>
</div>
</div>
</body>
</html>
```
### 回答2:
<!DOCTYPE html>
<html>
<head>
<style>
.text-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.text-box {
width: 300px;
height: 30px;
margin-bottom: 20px;
}
.btn {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<div class="text-container">
<input type="text" class="text-box">
<button class="btn" onclick="showPopup()">弹出</button>
</div>
<script>
function showPopup() {
var textValue = document.querySelector('.text-box').value;
alert(textValue);
}
</script>
</body>
</html>
### 回答3:
以下是你需要的HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<style>
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.textbox {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="textbox">
<input type="text" id="inputText">
</div>
<button onclick="showAlert()">点击我</button>
</div>
<script>
function showAlert() {
var input = document.getElementById("inputText").value;
alert(input);
}
</script>
</body>
</html>
```
这份代码将一个文本框和一个按钮居中显示在页面上。当你点击按钮时,它会通过JavaScript函数获取文本框中的内容,并以提示框的形式显示出来。
阅读全文