2 回答
TA贡献1864条经验 获得超2个赞
问题是因为一旦在函数之外您就获得了 amount 字段的值。您只需将amnt变量更改为 amount 元素,而不是其值:
var amnt=document.getElementById("amount");
var pandiv=document.getElementById("pancarddiv");
function showPanfield(){
if(amnt.value >= 2000){
pandiv.style.display="block";
}
else{
pandiv.style.display="none";
}
}
<!doctype html>
<html>
<head>
<title>Donation Form</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.min.js"></script>
<style>
div#pancarddiv {
display: none;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row">
<form action="" method="POST">
<div class="col-lg-12 col-md-12 col-sm-12 form-group">
<label>Full Name*</label>
<input type="text" class="form-control" id="name" name="fname" required/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 form-group">
<label>Postal Address*</label>
<textarea class="form-control" rows="4" id="Address" name="address" required></textarea>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 form-group">
<label>Mobile No.*</label>
<input type="number" class="form-control" id="mobileno" name="mobile" required/>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 form-group">
<label>Email Id*</label>
<input type="email" class="form-control" id="email" name="email" required/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 form-group">
<label>Amount (Rs.)*</label>
<input oninput="showPanfield()" type="number" class="form-control" id="amount" name="amount" required/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 form-group" id="pancarddiv">
<label>Pan Card No*</label>
<input type="text" class="form-control" id="panid" name="panid"/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 form-group">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</form>
</div>
</div>
</body>
</html>
TA贡献1883条经验 获得超3个赞
这段代码有两个问题
document.getElementById("amount").value
返回一个字符串,因此如果您希望获得一个数字,您应该将其转换为数字(例如使用一元 + 运算符)在
if
语句中,您尝试仍然访问变量value
的不存在属性amnt
,该属性是字符串而不是对象
因此,为了解决这两个问题,请将语句更改为
if (+amnt >= 2000) { ... }
作为旁注,如果您使用内联事件处理程序,则不应使用括号,因为您正在分配函数oninput="showPanfield"
- 2 回答
- 0 关注
- 82 浏览
添加回答
举报