jsp页面提交form表单,后台action跳转之后自动调用页面中的js方法。并且带有参数。如何处理?

2025-01-05 09:32:12
推荐回答(1个)
回答1:

function submit(form){
form.submit();
anotherFunciton();
}
function anotherFunction(){
/////////////////////////////
}