html弹窗提示代码
时间: 2023-06-30 09:14:57 浏览: 276
以下是一个基本的 HTML 弹窗提示代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>弹窗提示</title>
</head>
<body>
<h1>欢迎来到我的网站!</h1>
<button onclick="alert('欢迎来到我的网站!')">点击这里显示弹窗提示</button>
</body>
</html>
```
当用户点击按钮时,浏览器将显示一个简单的弹窗提示框,其中包含指定的消息。可以通过更改 `onclick` 属性中的 JavaScript 代码来更改弹窗提示的内容和行为。
相关问题
html漂亮的弹窗提示代码,点击确定后跳转url
以下是一个简单的HTML弹窗提示代码,点击确定后跳转到指定的URL页面:
```html
<!DOCTYPE html>
<html>
<head>
<title>弹窗提示</title>
<style type="text/css">
body {
background-color: #f5f5f5;
}
.popup {
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0px 0px 10px #ccc;
padding: 20px;
max-width: 400px;
margin: 50px auto;
text-align: center;
font-size: 18px;
}
.btn {
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="popup">
<p>这是一个弹窗提示。</p>
<button class="btn" onclick="window.location.href='https://www.example.com'">确定</button>
</div>
</body>
</html>
```
在这个示例中,我们使用CSS样式定义了弹窗的样式,使用了一个`div`元素作为弹窗的容器。然后,在弹窗中添加了一些文本和一个按钮,当用户单击该按钮时,它将使用JavaScript代码将页面重定向到指定的URL。
请注意,此示例中的代码只是一个基本示例,您可以根据自己的需求进行更改和扩展。
web写出12+适龄弹窗提示代码
以下是一个简单的12+适龄弹窗提示的示例代码:
HTML代码:
```
<div id="age-verification" class="modal">
<div class="modal-content">
<h3>请确认您已经年满12岁</h3>
<p>此网站包含一些适合12岁及以上观众的内容。</p>
<button id="yes-button">是</button>
<button id="no-button">否</button>
</div>
</div>
```
CSS代码:
```
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.75);
}
.modal-content {
background-color: white;
border-radius: 5px;
padding: 20px;
margin: 10% auto;
max-width: 400px;
text-align: center;
}
button {
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
margin: 10px;
cursor: pointer;
}
button:hover {
opacity: 0.8;
}
```
JavaScript代码:
```
// 获取弹窗元素
var modal = document.getElementById("age-verification");
// 获取是和否按钮元素
var yesButton = document.getElementById("yes-button");
var noButton = document.getElementById("no-button");
// 当用户点击是按钮时,隐藏弹窗
yesButton.onclick = function() {
modal.style.display = "none";
}
// 当用户点击否按钮时,重定向到其他页面
noButton.onclick = function() {
window.location = "http://example.com/not-allowed";
}
// 当页面加载时,显示弹窗
window.onload = function() {
modal.style.display = "block";
}
```
请注意,在这个示例中,我们使用了简单的JavaScript代码来控制弹窗的显示和隐藏。当用户点击“是”按钮时,我们使用`modal.style.display = "none"`将其隐藏。当用户点击“否”按钮时,我们使用`window.location`将其重定向到另一个页面。当页面加载时,我们使用`modal.style.display = "block"`将其显示。
阅读全文