jsp页面跳转后台代码的方式总结~
jsp页面跳到后台代码,有如下几种方式:
action方式;
jquery方式,代码如下:
function regCust(){
$(‘#containerFRM‘).form(
‘submit‘,
{
"url" : "${webAppUrl}/cust/registeredUser.html",
onSubmit : function() {
//显示遮罩
$.jBox.tip("正在提交……", ‘loading‘);
},
success : function(responseText) {
$.jBox.closeTip();
if(‘success‘ == responseText){
/*$.jBox.tip("注册成功,3秒后自动跳转……", ‘success‘);
window.setTimeout(function () {
window.location.href = document.getElementById(‘strBackUrl‘).value
}, 3000);*/
$(‘.themsMain‘).html("<div style=‘height: 100px;margin-top: 50px;text-align: center;font-weight: bold;font-size: 16px;line-height:36px;‘><img src=‘${webUiUrl}/images/chengg.jpg‘ width=‘64‘ height=‘59‘ /><span class=‘red bold font16‘>恭喜您,注册成功!</span><br
/>系统<span id=‘time_span‘>3</span>秒之后自动跳转...<div><div>");
window.opener.location.reload();
interValObj = window.setInterval(setTime, 1000);
}else{
$.jBox.error(‘注册失败‘, ‘提示‘);
}
}
},‘text‘);
}
ajax方式,现在来说说ajax方式,代码如下:
$.ajax({
url:"${webAppUrl}/cust/existsUser.html?user_sn="+s,
type : "post",
dataType : "text",
contentType : "application/text;charset=utf-8",
cache : false,
async : false,
success : function(data) {
if(‘false‘ == data || !data)
{
regCust();
}else{
$.jBox.info(‘用户名已经存在,请重新输入‘, ‘提示‘);
}
}
},‘text‘);
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。