-1

我正在使用 html、javascript 和 mod_python。我想提交html表单。为此,我使用了

document.formName.submit();

提交后我想重定向到新页面。我试过location="newpage.html"了,但这不起作用。

4

3 回答 3

1

除非您使用 AJAX 提交表单,否则提交会将用户带到新页面,因此您无法执行 javascript 重定向。

您可以在服务器端重定向,或更改表单的操作。

于 2009-10-18T08:08:44.577 回答
0
Req.write('<script>location.href="page.py?fn=xxx";</script>')

在提交时要执行的python函数的末尾

于 2009-10-18T09:43:48.450 回答
0

使用 ajax 提交表单。然后onSuccess回调,设置window.location = new_url。

于 2009-10-18T08:17:04.367 回答