1.重定向
創(chuàng)新互聯(lián)建站是一家專業(yè)提供館陶企業(yè)網(wǎng)站建設,專注與網(wǎng)站設計制作、成都做網(wǎng)站、H5響應式網(wǎng)站、小程序制作等業(yè)務。10年已為館陶眾多企業(yè)、政府機構等服務。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設計公司優(yōu)惠進行中。
window.location.replace("");
2.可以使用替換的
$(location).attr('href', '');
$(location).prop('href', '')
$(window).attr('location','');
3.可以使用href
window.location.href = "";
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
html
head
titlecheckbox/title
script src="js/jquery-1.3.2.js" type="text/javascript"/script
script src="js/1.js" type="text/javascript"/script
/head
body
table id="table1"
tr
tdinput type="checkbox" value="1"/1/td
td id="k_1"input type="text" name="student" id="s_1" readonly="true"http://td
/tr
tr
tdinput type="checkbox" value="2"/2/td
td id="k_2"input type="text" name="student" id="s_2" readonly="true"http://td
/tr
tr
tdinput type="checkbox" value="3"/3/td
td id="k_3"input type="text" name="student" id="s_3" readonly="true"http://td
/tr
tr
tdinput type="checkbox" value="4"/4/td
td id="k_4"input type="text" name="student" id="s_4" readonly="true"http://td
/tr
/table
/body
/html
-------------------------------------------------------------
$(document).ready(function() {
$("td[id^='k_']").hide();
var check = $(":checkbox"); //得到所有被選中的checkbox
var actor_config; //定義變量
check.each(function(i){
actor_config = $(this);
actor_config.click(
function(){
if($(this).attr("checked")==true){
$("#k_"+$(this).val()).show();
}else{
$("#k_"+$(this).val()).hide();
}
}
);
});
});
重定向頁面必須在服務器做301或302響應StatusCode設置。
將自定義標頭添加到響應。
將一個JavaScript函數(shù)綁定到 ”ajaxSuccess "事件并檢查標頭是否存在。
重定向頁面必須在服務器做301或302響應StatusCode設置。
將自定義標頭添加到響應。
將一個JavaScript函數(shù)綁定到 ”ajaxSuccess "事件并檢查標頭是否存在。
你本身就是想跳轉(zhuǎn)頁面,為什么要用ajax,直接頁面提交表單就可以了,ajax本身的作用就是在不刷新頁面的情況下改變頁面的局部,你現(xiàn)在要跳轉(zhuǎn)頁面,也就是整個頁面換了,所以直接頁面上寫form,直接提交到spring的控制器跳轉(zhuǎn)就ok了