function register() { //form.action = "/LogonAction.do?method=doLogon"; //document.all.loginF.action = "/LogonAction.do?method=doLogon"; window.open("RegisterAction.do?method=goAdd",null,''); //location.href = "/wr_team6/jsp/system/register.jsp"; //document.all.loginF.submit; }麻烦知道的告诉声,谢谢!
3 回答
一只名叫tom的猫
TA贡献1906条经验 获得超3个赞
是在jsp页面中需要调用的js代码时,跳转执行的js函数,和其他语言没有什么大的区别,简单易用
在客户端使用方便,快捷,主要是处理信息,跳转页面,调用服务器的作用
window.open("RegisterAction.do?method=goAdd",null,'');
调用服务器的java代码,?后面是java类中的函数名,然后会回置过来一个新的页面,作为结果
潇潇雨雨
TA贡献1833条经验 获得超4个赞
function是关键字,表示要定义一个函数
register 是函数名
window.open("RegisterAction.do?method=goAdd",null,'')
是打开一个新页面,这个页面的地址是RegisterAction.do?method=goAdd
MYYA
TA贡献1868条经验 获得超4个赞
其他代码都被注释掉了有用的就这一句
window.open("RegisterAction.do?method=goAdd",null,'');
就是提交表单 然后新打开一个窗口接受返回的内容
添加回答
举报
0/150
提交
取消