① 在jsp中点击前往按钮弹出提示框,点确认前往相应页面,点取消留在本页面怎么写。请各位大神指教指教谢谢
你好,提问者:
给你写了个小例子,希望对你有帮助,若你觉得可以,希望采纳,谢谢!
<%@pagelanguage="java"contentType="text/html;charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=UTF-8">
<title>Inserttitlehere</title>
<scripttype="text/javascript"src="../jquery/jquery-3.2.1.jar"></script>稿运迹
<scripttype="text/javascript">
functiontankuang(){
varr=confirm("确认前往下一个页面");
if(r==true)
{
window.location.href("./PageOne.jsp");//可以使用其他方式跳转
}
else
{
window.location.href("./TestPage.jsp");//可以不写。
}
}
</script>
</head>
<body>
<buttononclick="tankuang()">跳转页面</button>
</body>
</html>
<%@pagelanguage="java"contentType="text/html;charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"键并>
<html>
<悄游head>
<metahttp-equiv="Content-Type"content="text/html;charset=UTF-8">
<title>Inserttitlehere</title>
</head>
<body>
这是一个新页面
</body>
</html>
② jsp页面点击提交的时候,弹出提示框选择输入下拉选择后点击保存。这个该怎么做
首先将“提交”按钮的类型改为type="button" id="sub",然后js点击事件,
//jquery.js
$("#sub").click(function(){
alert("处理数据")
$("#FormID").submit();
})