我正在使用 html、javascript 和 mod_python。我想提交html表单。为此,我使用了
document.formName.submit();
提交后我想重定向到新页面。我试过location="newpage.html"
了,但这不起作用。
我正在使用 html、javascript 和 mod_python。我想提交html表单。为此,我使用了
document.formName.submit();
提交后我想重定向到新页面。我试过location="newpage.html"
了,但这不起作用。
除非您使用 AJAX 提交表单,否则提交会将用户带到新页面,因此您无法执行 javascript 重定向。
您可以在服务器端重定向,或更改表单的操作。
Req.write('<script>location.href="page.py?fn=xxx";</script>')
在提交时要执行的python函数的末尾
使用 ajax 提交表单。然后onSuccess回调,设置window.location = new_url。