使用python flask做网页,使用了JS来做一个弹出登陆框,怎么获取到表单数据, 85
这个弹出框时从网上下载来的代码。可以正常运行,就是获取不到数据。html中的代码:<formid="loginform"name="loginform"method="p...
这个弹出框时从网上下载来的代码。可以正常运行,就是获取不到数据。
html中的代码:
<form id="loginform" name="loginform" method="post" action="index.html" enctype=multipart/form-data>
<!--label for="username">账户名:</label-->
{% if error %}
<p>{{ error }} 或者<a href="mima.html">忘记密码</a></p>
<a href="zhuche.html" style="font-size: 20px;text-decoration: none;">注册</a>
{% endif %}
<input type="text" name="username" id="username" class="txtfield" tabindex="1" placeholder="输入您的账号"/>
<!--label for="password">密码:</label-->
<input type="password" name="password" id="password" class="txtfield" tabindex="2" placeholder="请输入您的密码"/>
<div class="center"><input type="submit" name="loginbtn" id="loginbtn" class="flatbtn-blu hidemodal" value="登陆" tabindex="3"style="height: 50px;width: 80px;margin-left: 85px;" ></div>
</form>
JS的代码:
$(function(){
$('#loginform').submit(function(e){
return false;
});
//弹出层调用语句
$('#modaltrigger').leanModal({
top:110,
overlay:0.45,
closeButton:".hidemodal"
});
}); 展开
html中的代码:
<form id="loginform" name="loginform" method="post" action="index.html" enctype=multipart/form-data>
<!--label for="username">账户名:</label-->
{% if error %}
<p>{{ error }} 或者<a href="mima.html">忘记密码</a></p>
<a href="zhuche.html" style="font-size: 20px;text-decoration: none;">注册</a>
{% endif %}
<input type="text" name="username" id="username" class="txtfield" tabindex="1" placeholder="输入您的账号"/>
<!--label for="password">密码:</label-->
<input type="password" name="password" id="password" class="txtfield" tabindex="2" placeholder="请输入您的密码"/>
<div class="center"><input type="submit" name="loginbtn" id="loginbtn" class="flatbtn-blu hidemodal" value="登陆" tabindex="3"style="height: 50px;width: 80px;margin-left: 85px;" ></div>
</form>
JS的代码:
$(function(){
$('#loginform').submit(function(e){
return false;
});
//弹出层调用语句
$('#modaltrigger').leanModal({
top:110,
overlay:0.45,
closeButton:".hidemodal"
});
}); 展开
1个回答
展开全部
function a(){
var a = $("#username").val();
var b = $("#password").val();
alert("帐号="+a+"<>密码="+b)
}
<input type="button" name="loginbtn" id="loginbtn" class="flatbtn-blu hidemodal" value="登陆" tabindex="3"style="height: 50px;width: 80px;margin-left: 85px;" onclick="a();" >
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询