- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是网络开发新手,我试图修改此代码,这样如果上面的文本区域为空,它就不允许单击任何注册或登录按钮,我很困惑在哪里编写 if 语句这将检查这一点,但我只知道 JS 的基础知识,不知道一点关于 jQuery 的知识,我尝试添加以下内容
reg-btn.click(function(e){
if($('.pwd' ).val() == null){
alert("error");}
else{ .....remaining code..}
但是没用,有办法解决吗?原始代码来自:https://codepen.io/chouaibblgn45/pen/ZXKdXR?editors=1010
"use strict";
$(document).ready(function () {
/*------- button with class register -------*/
var reg_btn = $('.container .register');
reg_btn.click(function (e) {
e.preventDefault();
$(this).siblings('.reg').css({
'transform': 'translateY(40%) scale(5)',
'border-radius': '0',
'width': '100%',
'height': '100%'
}).end();
reg_btn.siblings('.container h3:nth-of- type(1)').css({
'top': '40%',
'z-index': '8',
}).end().end();
});
});
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Open Sans', sans-serif;
background: #e2e2e2;
}
svg {
position: fixed;
top: 10px;
left: 180px;
}
.container {
position: relative;
top: 200px;
left: 35%;
display: block;
margin-bottom: 80px;
width: 500px;
height: 360px;
background: #fff;
border-radius: 5px;
overflow: hidden;
z-index: 1;
}
h2 {
padding: 40px;
font-weight: lighter;
text-transform: uppercase;
color: #414141;
}
input {
display: block;
height: 50px;
width: 90%;
margin: 0 auto;
border: none;
}
input::placeholder {
-webkit-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition: .5s;
transition: .5s;
}
input:hover, input:focus, input:active:focus {
color: #ff5722;
outline: none;
border-bottom: 1px solid #ff5722;
}
input:hover::placeholder, input:focus::placeholder, input:active:focus::placeholder {
color: #ff5722;
position: relative;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
.email,
.pwd {
position: relative;
z-index: 1;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding-left: 20px;
font-family: 'Open Sans', sans-serif;
text-transform: uppercase;
color: #858585;
font-weight: lighter;
-webkit-transition: .5s;
transition: .5s;
}
.link {
text-decoration: none;
display: inline-block;
margin: 27px 28%;
text-transform: uppercase;
color: #858585;
font-weight: lighter;
-webkit-transition: .5s;
transition: .5s;
}
button {
cursor: pointer;
display: inline-block;
float: left;
width: 250px;
height: 60px;
margin-top: -10px;
border: none;
font-family: 'Open Sans', sans-serif;
text-transform: uppercase;
color: #fff;
-webkit-transition: .5s;
transition: .5s;
}
button:nth-of-type(1) {
background: #673ab7;
}
button:nth-of-type(2) {
background: #ff5722;
}
button span {
position: absolute;
display: block;
margin: -10px 20%;
-webkit-transform: translateX(0);
transform: translateX(0);
-webkit-transition: .5s;
transition: .5s;
}
button:hover span {
-webkit-transform: translateX(30px);
transform: translateX(30px);
}
.reg {
position: absolute;
top: 0;
left: 0;
-webkit-transform: translateY(-100%) scale(1);
transform: translateY(-100%) scale(1);
display: block;
width: 20px;
height: 20px;
border-radius: 50px;
background: #673ab7;
z-index: 5;
-webkit-transition: .8s ease-in-out;
transition: .8s ease-in-out;
}
h3 {
position: absolute;
top: -100%;
left: 20%;
text-transform: uppercase;
font-weight: bolder;
color: rgba(255, 255, 255, 0.3);
-webkit-transition: .3s ease-in-out 1.2s;
transition: .3s ease-in-out 1.2s;
}
<!DOCTYPE html>
<html>
<head>
<head>
<body>
<div class="container">
<h2>login</h2>
<form>
<input type="text" class="email" placeholder="email">
<br/>
<input type="text" class="pwd" placeholder="password">
</form>
<a href="#" class="link">
forgot your password ?
</a>
<br/>
<button class="register">
<span>register</span>
</button>
<button class="signin">
<span>sign in</span>
</button>
<h3>your registration is complete ! </h3>
<h3>your sign in is complete !</h3>
<div class="reg"></div>
<div class="sig"></div>
</div>
</body>
</html>
最佳答案
空输入字段的 .val()
将是一个不含任何字符的字符串。不是 null
值。
如果运行以下命令,您可以看到这一点
console.log(typeof $('.pwd' ).val())
// returns string
您可以将代码更改为:
reg-btn.click(function(e){
if($('.pwd' ).val().length > 0){
//form is valid
}
关于javascript - 如何检查表单的有效性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61061750/
网站的日常维护通常涉及验证链接是否有效、标记不良链接等。 我知道如何通过脚本匹配电子邮件地址(尤其是在它们位于 mailto: 链接中的网页上下文中)。我的问题是如何在不向地址发送垃圾邮件的情况下验证
我正在尝试将大型 UInt16 数组保存到文件中。 positionCnt大约是50000,stationCnt大约是2500。直接保存,没有GZipStream,文件大约250MB,可以通过外部zi
我正在寻找表格方面的 HTML5 规范。我正在做一个有很多数据表的网络应用程序。 这些表通常有一个数据库行映射到一个表行。一切都很好。然而,一个特定的问题 child 有太多的列,需要将其分布在表中的
我目前正在研究用于客户端目的的Azure流媒体服务,我想知道是否有一种方法可以为自适应流媒体创建时间有限的URL(出于安全目的,我们需要这个,当用户想要流媒体时,我们会验证权限)创建限时 URL)。我
我目前正在研究用于客户端目的的Azure流媒体服务,我想知道是否有一种方法可以为自适应流媒体创建时间有限的URL(出于安全目的,我们需要这个,当用户想要流媒体时,我们会验证权限)创建限时 URL)。我
我想做的是测试我编写的一些 Lucene 代码,并且想要一些有关使用 JUnit 进行测试时的最佳实践的信息。顺便说一句,Lucene 是一个搜索引擎,您可以使用它创建一个平面文件来索引一堆数据。 所
我有一个 .net 核心应用程序,我在注册后创建了一个电子邮件 token ,然后通过电子邮件发送它。这个想法是,用户可以在客户端应用程序中使用该电子邮件 token ,我想检查它的有效性(如果它过期
我的印象是使用 javascript 经常破坏 W3C xhtml/css 有效性。这是真的?如果是这样,为什么我可以在我的网页中使用 javascript 并且仍然使它们符合 W3C 标准(html
我简直是在绞尽脑汁想弄明白这个问题。给定一个无向连通图 G , G 中的所有边都具有未知成本,但已知每条边的每个成本的区间,例如边 e 的成本在闭区间 [i,j] 中,其中 i 和 j 是实数。我还得
检查 URL 有效性的一种直接方法是简单地处理 MalformedURLException 异常: try { URL base = new URL(SomeString); } catch (M
如何在 shell 脚本中检查 0.0.0.0 到 255.255.255.255 范围内的 IP 地址的有效性? 最佳答案 如果您使用的是 bash,则可以对模式进行简单的正则表达式匹配,而无需验证
我已成功通过我的 Angular 应用程序中的 Azure AD ( https://login.microsoftonline.com/ {tenantId}/oauth2/v2.0/authori
我已经获得了文件:一个 .der- 和一个 .p12-文件,以及一个 key 对,我们应该用它来在 Java 代码中创建和验证数字签名。 我必须将两个 key 保存在 MySql-Database-T
我一直在关注 this使用 lumen 和 vuejs 进行身份验证的教程。我正在使用 this库(tymon/jwt-auth)。 一切正常。我的 API 为我的数据处理所有事情,并为我的前端框架提
我想知道,但是引用交易必须在过去 730 天内发生,因为账单协议(protocol) ID 可能在两年后不可用。因此,如果第一笔交易在到期前完成,可以说是在 600 天之后,那么 ID 将在 130
std::string.npos 曾经有效吗? (与正确的 std::string::npos 相反。) 我在我正在处理的一个旧项目中经常看到它,它不能用 VS2010 编译。 它是前标准时代的东西吗
我正在使用 Passport 来验证用户进入我的应用程序 我已经为此创建了一个通行证策略 passport.use(new GoogleStrategy({ clientID: process
我正在使用来自 API 的 URL,其中搜索词用引号括起来。例如:http://www.example.com/searchterm="搜索"。 但是,由于引号,我的 NSURL(由 URLWithS
有谁知道 GitLab 上 OAuth 访问 token 的有效期是多少? 至少需要 12 小时(根据经验),但我想确定一下,所以我不会不必要地刷新 token 。 PS:亚搏体育app ...如果在
使用 FirebaseStorage 的 getDownloadUrl 时,我对 url(&token=) 中的“ token ”有疑问。 https://firebasestorage.google
我是一名优秀的程序员,十分优秀!