jsp表单内容填写完毕,弹出alert显示所填写的内容 10
我想在jsp表单中内容填写完毕之后,提交的时候会弹出一个对话框,显示所填写的内容,如果填写内容无误的话就提交给服务器,要不就返回用js如果写?...
我想在jsp表单中内容填写完毕之后,提交的时候会弹出一个对话框,显示所填写的内容,如果填写内容无误的话就提交给服务器,要不就返回
用js如果写? 展开
用js如果写? 展开
展开全部
<html>
<head>
<title>test</title>
<script type="text/javascript">
<!--
function checkSub(){
var name = document.getElementById("name").value;
var sex = document.getElementById("sex").value;
var conTel = document.getElementById("conTel").value;
var address = document.getElementById("address").value;
var showContent = "您提交的内容为:\n";
showContent += " 姓名:" + name + "\n";
showContent += " 性别:" + sex + "\n";
showContent += " 电话:" + conTel + "\n";
showContent += " 地址:" + address + "\n";
showContent += "请确认提交内容填写无误。\n";
showContent += "点 确定 提交信息\n";
showContent += "点 取消 返回修改";
if(confirm(showContent)){
alert("提交");
return true;
} else {
alert("返回");
return false;
}
}
//-->
</script>
</head>
<body>
<form id="form1" name="main" method="post" id="main"
onsubmit="return checkSub();">
姓名:<input type="text" name="name" id="name"/><br>
性别:<input type="text" name="sex" id="sex"/><br>
电话:<input type="text" name="conTel" id="conTel"/><br>
地址:<input type="text" name="address" id="address"/><br>
<input type="submit" value="提交" />
</form>
</body>
</html>
试试看效果,
希望能帮到你
<head>
<title>test</title>
<script type="text/javascript">
<!--
function checkSub(){
var name = document.getElementById("name").value;
var sex = document.getElementById("sex").value;
var conTel = document.getElementById("conTel").value;
var address = document.getElementById("address").value;
var showContent = "您提交的内容为:\n";
showContent += " 姓名:" + name + "\n";
showContent += " 性别:" + sex + "\n";
showContent += " 电话:" + conTel + "\n";
showContent += " 地址:" + address + "\n";
showContent += "请确认提交内容填写无误。\n";
showContent += "点 确定 提交信息\n";
showContent += "点 取消 返回修改";
if(confirm(showContent)){
alert("提交");
return true;
} else {
alert("返回");
return false;
}
}
//-->
</script>
</head>
<body>
<form id="form1" name="main" method="post" id="main"
onsubmit="return checkSub();">
姓名:<input type="text" name="name" id="name"/><br>
性别:<input type="text" name="sex" id="sex"/><br>
电话:<input type="text" name="conTel" id="conTel"/><br>
地址:<input type="text" name="address" id="address"/><br>
<input type="submit" value="提交" />
</form>
</body>
</html>
试试看效果,
希望能帮到你
展开全部
<javascript language="javascript">
function(){
//得到页面填写内容并验证;
if(如果填写无误的条件){
alert("填写正确!");
}else{
alert("填写错误");
}
}
</script>
function(){
//得到页面填写内容并验证;
if(如果填写无误的条件){
alert("填写正确!");
}else{
alert("填写错误");
}
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<javascript
language="javascript">
function(){
//得到页面填写内容并验证;
if(如果填写无误的条件){
alert("填写正确!");
}else{
alert("填写错误");
}
}
</script>
language="javascript">
function(){
//得到页面填写内容并验证;
if(如果填写无误的条件){
alert("填写正确!");
}else{
alert("填写错误");
}
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
alert(document.getElementById("elementId"));
或
alert(document.getElementByName("elementName"));
或
alert(document.getElementByName("elementName"));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询