.net里面,怎么通过JS提交表单???
我想问下我这样写到底有什么问题,为什么就是提交不了表单????<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="te...
我想问下我这样写到底有什么问题,为什么就是提交不了表单????
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function check() {
var txtname = document.getElementById("txtname").value;
if (txtname.length == 0)
{ alert("昵称不能为空"); }
else {
document.getElementById("commentform").submit();
return true;
}
}
</script>
</head>
<body>
<form name="commentform" method="post" action="savecomment.aspx" >
<textarea name="txtname" id="txtname" cols="" rows=""></textarea>
<a class="pp" href="javascript:void(0);" onclick="check()">评论</a>
</form>
</body>
</html> 展开
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function check() {
var txtname = document.getElementById("txtname").value;
if (txtname.length == 0)
{ alert("昵称不能为空"); }
else {
document.getElementById("commentform").submit();
return true;
}
}
</script>
</head>
<body>
<form name="commentform" method="post" action="savecomment.aspx" >
<textarea name="txtname" id="txtname" cols="" rows=""></textarea>
<a class="pp" href="javascript:void(0);" onclick="check()">评论</a>
</form>
</body>
</html> 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询