1. 程式人生 > >JavaScript 提交和跳轉的例子

JavaScript 提交和跳轉的例子

這個方法是用來跳轉action最後到頁面的。


function toAdd() {
window.location.href("tellist.do?method=toAdd");
}


這個方法是用來提交的。可以帶值

function toUpdate(id,tel,area) {

var method = document.getElementById("method");
method.value = "toUpdate";
var tid = document.getElementById("tid");
tid.value = id;

var tel2 = document.getElementById("tel");
tel2.value = tel;

var area2 = document.getElementById("area");
area2.value = area;

var mainForm = document.getElementById("main");
mainForm.submit();
}