- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当您单击“inloggen”时,会弹出模式,这很棒。但是,当您转到注册并返回登录并返回注册等时,在模式之外单击将不再将其关闭。
有人知道这个问题吗?
我认为这是 JavaScript 代码的问题。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" media="all">
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet" media="all">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="assets/js/login-register.js" type="text/javascript"></script>
<link rel="stylesheet" href="../css/opmaak.css">
<script src="../js/main.js" type="text/javascript"></script>
<title>'T Shopkartje</title>
<style>
.modal-header, h4, .close {
background-color: #5cb85c;
color:white !important;
text-align: center;
font-size: 30px;
}
.modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}
</style>
<style>html,
body {
height: 100%;
margin: 0;
width: auto!important;
overflow-x: hidden!important;
background-image:url('../images/achtergrond.png');
scroll-behavior: smooth;
}
.carousel,
.item,
.active {
height: 95%;
}
.container-fluid{
background-image:url('../images/achtergrond.png');
}
.carousel-inner {
height: 100%;
background: #000;
}
.carousel-caption{padding-bottom:80px;}
h2{font-size: 60px;}
p{padding:10px}
/* Background images are set within the HTML using inline CSS, not here */
.fill {
width: 100%;
height: 110%;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
opacity:0.6;
}
.header {
background-color: #f1f1f1;
padding: 30px;
text-align: center;
}
/**
* Button
*/
.btn-transparent {
background: transparent;
color: #fff;
border: 2px solid #fff;
}
.btn-transparent:hover {
background-color: #fff;
}
.btn-rounded {
border-radius: 70px;
}
.btn-large {
padding: 11px 45px;
font-size: 18px;
}
/**
* Change animation duration
*/
.animated {
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100px, 0, 0);
transform: translate3d(100px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100px, 0, 0);
transform: translate3d(100px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
.footer {
position: bottom;
bottom: 0px;
width: 100%;
height: 55px;
text-align: center !important;
background-color: #f2f2f2;
}
</style>
</head>
<body>
<nav class="navbar-fixed navbar-white">
<div class="container-fluid">
<div class="navbar-header">
</div>
<div>
<ul class="nav navbar-nav navbar-right">
<li><a type="button" href="javascript: void(0)" id="btnlogin">Inloggen</a></li>
<li><a type="button" href="javascript: void(0)" id="btnlogon">Registreren</a></li>
</ul>
</div>
</div>
</nav>
<!-- Modal -->
<div class="modal fade" id="loginmodel" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:35px 50px;">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4><span class="glyphicon glyphicon-lock"></span> Inloggen</h4>
</div>
<div class="modal-body" style="padding:40px 50px;">
<form role="form">
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-envelope"></span> E-Mail</label>
<input type="text" class="form-control" id="usrname" placeholder="Enter email">
</div>
<div class="form-group">
<label for="psw"><span class="glyphicon glyphicon-eye-open"></span> Password</label>
<input type="text" class="form-control" id="psw" placeholder="Enter password">
</div>
<div class="checkbox">
<label><input type="checkbox" value="" checked>Remember me</label>
</div>
<button type="submit" class="btn btn-success btn-block"><span class="glyphicon glyphicon-off"></span> Inloggen</button>
</form>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-danger btn-default pull-left" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Cancel</button>
<p class="pp">Geen account? <button class="btn btn-light" id="btnlogonfromin">Registreren</button></p>
<p class="pp"><button type="button" class="btn btn-light" id="btnlogin">Passwoord Vergeten?</button></p>
</div>
</div>
</div>
</div>
</div>
<!-- Modal2 -->
<div class="modal fade" id="logonmodel" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:35px 50px;">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4><span class="glyphicon glyphicon-lock"></span> Registreren</h4>
</div>
<div class="modal-body" style="padding:40px 50px;">
<form role="form">
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-user"></span> Voornaam</label>
<input type="text" class="form-control" id="voornm" placeholder="Enter Voornaam" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-user"></span> Achternaam</label>
<input type="text" class="form-control" id="achtrn" placeholder="Enter Achternaam" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-envelope"></span> E-Mail</label>
<input type="text" class="form-control" id="email" placeholder="Enter email" required>
</div>
<div class="form-group">
<label for="psw"><span class="glyphicon glyphicon-eye-open"></span> Passwoord</label>
<input type="text" class="form-control" id="psw" placeholder="Enter Passwoord" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-bed"></span> Straat + Huisnummer</label>
<input type="text" class="form-control" id="straat" placeholder="Straat + Huisnummer" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-road"></span> Postcode + Stad</label>
<input type="text" class="form-control" id="stad" placeholder="Postcode + Stad" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-phone"></span> Telefoonnummer</label>
<input type="text" class="form-control" id="numb" placeholder="Enter Telefoonnummer" required>
</div>
<button type="submit" class="btn btn-success btn-block"><span class="glyphicon glyphicon-off"></span> Registreren</button>
</form>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-danger btn-default pull-left" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Cancel</button>
<p class="pp">Heeft u al een account? <button type="button" class="btn btn-light" id="btnloginfromin">Inloggen</button></p>
</div>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function(){
$("#btnlogin").click(function(){
$("#loginmodel").modal();
});
});
$(document).ready(function(){
$("#btnlogon").click(function(){
$("#logonmodel").modal();
});
});
$("#btnloginfromin").on("click", function(){
$("#logonmodel").modal("hide");
$("#logonmodel").on("hidden.bs.modal",function(){
$("#loginmodel").modal("show");
});
});
$("#btnlogonfromin").on("click", function(){
$("#loginmodel").modal("hide");
$("#loginmodel").on("hidden.bs.modal",function(){
$("#logonmodel").modal("show");
});
});
</script>
<script>
function ons()
{
location.href = "ons.html";
}
</script>
<script>
function shopkart()
{
location.href = "shopkart.php";
}
</script>
<script>
function contacteren()
{
location.href = "contacteren.html";
}
</script>
<?php
?>
</body>
</html>
最佳答案
您在打开模式的 hidden.bs.modal
上绑定(bind)了一个回调函数。
...
$("#loginmodel").modal("hide");
$("#loginmodel").on("hidden.bs.modal",function(){
$("#logonmodel").modal("show");
});
...
没有必要,这会导致无限的模式打开。您只需在 modal('hide')
之后调用 modal('show')
即可。
...
$("#btnloginfromin").on("click", function() {
$("#logonmodel").modal("hide");
$("#loginmodel").modal("show");
});
$("#btnlogonfromin").on("click", function() {
$("#loginmodel").modal("hide");
$("#logonmodel").modal("show");
});
...
片段:
$(document).ready(function() {
$("#btnlogin").click(function() {
$("#loginmodel").modal();
});
});
$(document).ready(function() {
$("#btnlogon").click(function() {
$("#logonmodel").modal();
});
});
$("#btnloginfromin").on("click", function() {
$("#logonmodel").modal("hide");
$("#loginmodel").modal("show");
});
$("#btnlogonfromin").on("click", function() {
$("#loginmodel").modal("hide");
$("#logonmodel").modal("show");
});
function ons() {
location.href = "ons.html";
}
function shopkart() {
location.href = "shopkart.php";
}
function contacteren() {
location.href = "contacteren.html";
}
.modal-header,
h4,
.close {
background-color: #5cb85c;
color: white !important;
text-align: center;
font-size: 30px;
}
.modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}
html,
body {
height: 100%;
margin: 0;
width: auto!important;
overflow-x: hidden!important;
background-image: url('../images/achtergrond.png');
scroll-behavior: smooth;
}
.carousel,
.item,
.active {
height: 95%;
}
.container-fluid {
background-image: url('../images/achtergrond.png');
}
.carousel-inner {
height: 100%;
background: #000;
}
.carousel-caption {
padding-bottom: 80px;
}
h2 {
font-size: 60px;
}
p {
padding: 10px
}
/* Background images are set within the HTML using inline CSS, not here */
.fill {
width: 100%;
height: 110%;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
opacity: 0.6;
}
.header {
background-color: #f1f1f1;
padding: 30px;
text-align: center;
}
/**
* Button
*/
.btn-transparent {
background: transparent;
color: #fff;
border: 2px solid #fff;
}
.btn-transparent:hover {
background-color: #fff;
}
.btn-rounded {
border-radius: 70px;
}
.btn-large {
padding: 11px 45px;
font-size: 18px;
}
/**
* Change animation duration
*/
.animated {
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100px, 0, 0);
transform: translate3d(100px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100px, 0, 0);
transform: translate3d(100px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
.footer {
position: bottom;
bottom: 0px;
width: 100%;
height: 55px;
text-align: center !important;
background-color: #f2f2f2;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" media="all">
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet" media="all">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="assets/js/login-register.js" type="text/javascript"></script>
<link rel="stylesheet" href="../css/opmaak.css">
<script src="../js/main.js" type="text/javascript"></script>
<title>'T Shopkartje</title>
</head>
<body>
<nav class="navbar-fixed navbar-white">
<div class="container-fluid">
<div class="navbar-header">
</div>
<div>
<ul class="nav navbar-nav navbar-right">
<li><a type="button" href="javascript: void(0)" id="btnlogin">Inloggen</a></li>
<li><a type="button" href="javascript: void(0)" id="btnlogon">Registreren</a></li>
</ul>
</div>
</div>
</nav>
<!-- Modal -->
<div class="modal fade" id="loginmodel" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:35px 50px;">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4><span class="glyphicon glyphicon-lock"></span> Inloggen</h4>
</div>
<div class="modal-body" style="padding:40px 50px;">
<form role="form">
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-envelope"></span> E-Mail</label>
<input type="text" class="form-control" id="usrname" placeholder="Enter email">
</div>
<div class="form-group">
<label for="psw"><span class="glyphicon glyphicon-eye-open"></span> Password</label>
<input type="text" class="form-control" id="psw" placeholder="Enter password">
</div>
<div class="checkbox">
<label><input type="checkbox" value="" checked>Remember me</label>
</div>
<button type="submit" class="btn btn-success btn-block"><span class="glyphicon glyphicon-off"></span> Inloggen</button>
</form>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-danger btn-default pull-left" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Cancel</button>
<p class="pp">Geen account? <button class="btn btn-light" id="btnlogonfromin">Registreren</button></p>
<p class="pp"><button type="button" class="btn btn-light" id="btnlogin">Passwoord Vergeten?</button></p>
</div>
</div>
</div>
</div>
<!-- Modal2 -->
<div class="modal fade" id="logonmodel" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:35px 50px;">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4><span class="glyphicon glyphicon-lock"></span> Registreren</h4>
</div>
<div class="modal-body" style="padding:40px 50px;">
<form role="form">
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-user"></span> Voornaam</label>
<input type="text" class="form-control" id="voornm" placeholder="Enter Voornaam" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-user"></span> Achternaam</label>
<input type="text" class="form-control" id="achtrn" placeholder="Enter Achternaam" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-envelope"></span> E-Mail</label>
<input type="text" class="form-control" id="email" placeholder="Enter email" required>
</div>
<div class="form-group">
<label for="psw"><span class="glyphicon glyphicon-eye-open"></span> Passwoord</label>
<input type="text" class="form-control" id="psw" placeholder="Enter Passwoord" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-bed"></span> Straat + Huisnummer</label>
<input type="text" class="form-control" id="straat" placeholder="Straat + Huisnummer" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-road"></span> Postcode + Stad</label>
<input type="text" class="form-control" id="stad" placeholder="Postcode + Stad" required>
</div>
<div class="form-group">
<label for="usrname"><span class="glyphicon glyphicon-phone"></span> Telefoonnummer</label>
<input type="text" class="form-control" id="numb" placeholder="Enter Telefoonnummer" required>
</div>
<button type="submit" class="btn btn-success btn-block"><span class="glyphicon glyphicon-off"></span> Registreren</button>
</form>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-danger btn-default pull-left" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Cancel</button>
<p class="pp">Heeft u al een account? <button type="button" class="btn btn-light" id="btnloginfromin">Inloggen</button></p>
</div>
</div>
</div>
</div>
</body>
</html>
关于javascript - Bootstrap 模式弹出窗口不会关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55199182/
我连续有 11 个图像,如果鼠标悬停在其中一个图像上,我希望弹出一个弹出窗口。所以每 11 个图像都有不同的弹出窗口。我已经有一些代码可以执行此操作,但它仅适用于第一张图像。 代码:index.htm
是否可以从 NSColorWell 制作一个 NSColorPanel“弹出”,几乎像一个弹出菜单? 我不喜欢它作为调色板的实现方式,因为有时它与哪个 NSColorWell 关联并不明显。 谢谢!
我正在考虑一个想法,基本上我想要一个带有 NSPopoverController 的 NSStatusItem 。我读到了人们遇到的所有问题,但我只是想尝试一下。现在有干净的方法吗?我见过的所有版本都
如何获取 JS 打开的弹出窗口的 url。这是我的代码: var _url = 'someurlhere'; var popupwindow = window.open(_url, "Popu
我正在设计一个网页,我希望当用户单击链接时,弹出窗口(新窗口)将打开一个链接网页。我的代码如下所示 function win(add,w,h) { window.open(add,"","widt
我正在寻找 C 中的简单堆栈实现,并找到了类似的东西: void pop(struct stack **top) { struct stack *temp; temp = malloc(s
我正在尝试使用 paypal 实现登录,我有 2 个不同的主机域 1- www.example.com 2- www.example.de 对于 paypal,我需要为此目的选择一个返回 URL,我选
我正在尝试找出如何复制此处显示的“弹出式” View 动画:https://imgur.com/a/irFqdiP .我正在使用当前代码来显示我的 viewController,但目前只有一个淡入淡出
有谁知道在 Windows 2000 或更高版本上以编程方式关闭 CD 托盘的方法?打开 CD 托盘存在,但我似乎无法关闭它,尤其是在 W2k 下。 如果可能的话,我特别想从批处理文件中寻找一种方法来
当您访问http://www.daniweb.com时你得到一个弹出窗口,这叫什么 + 知道怎么做吗? 感谢您的回复,只有模态加载动画的最简单方法是什么,即页面加载时动画显示以及动画何时完成? ASP
我正在为 Unity 引擎中的音频过滤器创建一个 C# 脚本。 我的问题是,在通过我的过滤器运行后,生成的音频具有一致且频繁的“咔哒声”、“砰砰声”或“跳过声”。听起来有点像旧 radio 。 我不确
我必须隐藏浏览器的地址栏。我正在使用这段代码: var winFeature = 'location=no,toolbar=no,menubar=no,scrollbars=yes,r
推荐一个button 弹起pickerview的源码,也可以作为工具类使用。 利用inputview 做键盘弹起动画。该如何做呢? 1.继承uiview 2.重写属性&方法
我在这里有一个问题,我已经工作了几个小时。 我正在导入一个 Excel 文件,并使用此代码来执行此操作: Dim objExcel As Excel.Application Di
我基本上是从 UITableViewController 推送 UIView,它包含的只是 UIWebView。但是,当我删除 UIView 以返回到 UITableView 时,应用程序崩溃了。 -
我有几个由导航 Controller 控制的 View Controller 。 例如,viewController A 和 viewController B 都可以将 viewController
我使用新的Gmail API为用户创建草稿。 API响应提供了新创建的消息ID。 然后,我可以使用URL https://mail.google.com/mail/#drafts?compose=[m
Redis列表实现了哪种内部数据结构以实现这一目的?链表将需要O(n)索引,而数组将需要O(n)左/右推/弹出。 最佳答案 根据official documentation,它们被实现为linked
我正在使用 WPF Popup 控件,它显示背景为黑色。我在其中放置了一个 StackPanel 并设置了 Background="Transparent",但这没有帮助。
我希望页面内的容器在事件时占据页面的整个宽度并覆盖在其他所有内容上。这是我目前所拥有的,但它没有按我想要的方式工作: $(function() { $('.main a').click( fu
我是一名优秀的程序员,十分优秀!