你好, 我试图通过将表单存储在cookie中来将表单发布到可变页面。一切似乎都很好,但对目标。当我使用下面的代码时,post操作的目标仍然是当前页面,虽然我在表单中设置了目标并且在函数中显式设置了目标。 我做了什么错了?
<script>
function submit(form){
var table=leggiCookie("source");
form.target='_parent';
form.action = "/combustibili/"+table+".php";
}
</script>
</head>
<body>
<form name='request' method='post' target='_parent' onsubmit="submit(this);">
</form>