我无法通过以下函数的帖子提交一些隐藏的表单数据:
function displayCertificate()
{
window.open("../mailer.php","certificate","width=500,height=400,status=1")
}
var sHTML = "";
sHTML += '<FORM id="quizResults" method="POST" action="/articulate/mailer.php" enctype="text/plain" target="certificate" onSubmit="displayCertificate()">';
sHTML += '<INPUT TYPE="hidden" NAME="name" VALUE=\'' + g_arrResults[0].strStudentResponse + '\'>';
sHTML += '<INPUT TYPE="hidden" NAME="email" VALUE=\'' + g_arrResults[1].strStudentResponse + '\'>';
sHTML += '<br><input type="submit"><br>';
sHTML += '</FORM>';
alert(g_arrResults[0].strStudentResponse);
document.getElementById("divEmail").innerHTML = sHTML;
document.getElementById("quizResults").submit();
我需要的是打开一个新窗口,打开我通过POST发送给它的信息。窗口弹出正常,firebug显示POST成功,但数据似乎没有发送到我的新窗口。
这是我的 mailer.php:
<?php
print("name: ".htmlspecialchars($_POST['name']));
print("email: ".htmlspecialchars($_POST['email']));
?>
非常简单,但却输出:name: email:
谁能明白为什么会发生这种情况?我的解决方案必须是普通的javascript(所以请不要库)。
感谢。
编辑以响应alessioalex:
console.log(g_arrResults)
的输出是这样的数组:
[QuestionResult { nQuestionNum=1, strQuestion=" ", more...}, QuestionResult { nQuestionNum=2, strQuestion=" ", more...}, QuestionResult { nQuestionNum=3, strQuestion="A, B or C?", more...}, QuestionResult { nQuestionNum=4, strQuestion="A, B or C?", more...}, QuestionResult { nQuestionNum=5, strQuestion="A, B or C?", more...}, QuestionResult { nQuestionNum=6, strQuestion="A, B or C?", more...}, QuestionResult { nQuestionNum=7, strQuestion="A, B or C?", more...}, QuestionResult { nQuestionNum=8, strQuestion="A, B or C?", more...}, QuestionResult { nQuestionNum=9, strQuestion="A, B or C?", more...}, QuestionResult { nQuestionNum=10, strQuestion="A, B or C?", more...}, QuestionResult { nQuestionNum=11, strQuestion="A, B or C?", more...}, QuestionResult { nQuestionNum=12, strQuestion="A, B or C?", more...}]
以下是数组中第一个对象的示例:
bFound
false
dtmFinished
Date {Thu Nov 17 2011 12:54:29 GMT+0000 (GMT Standard Time)}
nPoints
"0"
nQuestionNum
1
strCorrectResponse
" "
strInteractionId
"I4e28818f-4014-418c-a6e4-863679014098"
strLatency
"1862"
strObjectiveId
"I4e28818f-4014-418c-a6e4-863679014098"
strQuestion
" "
strResult
"neutral"
strStudentResponse
"Peter Rabbit"
strType
"fillin"
答案 0 :(得分:2)
删除window.open代码并尝试将target =“_ blank”添加到表单中:
<FORM target="_blank" id="quizResults" method="POST" ...>
答案 1 :(得分:1)
您需要将表单注入弹出窗口文档,然后自动提交:
function displayCertificate()
{
var win = window.open("","certificate","width=500,height=400,status=1");
win.document.open();
win.document.write('<FORM id="quizResults" method="POST" action="/articulate/mailer.php" enctype="text/plain" target="certificate" onSubmit="displayCertificate()">');
win.document.write('<INPUT TYPE="hidden" NAME="name" VALUE=\'' + g_arrResults[0].strStudentResponse + '\'>');
win.document.write('<INPUT TYPE="hidden" NAME="email" VALUE=\'' + g_arrResults[1].strStudentResponse + '\'>');
win.document.write('<br><input type="submit"><br>');
win.document.write('</FORM>');
win.document.close();
win.document.getElementById('quizResults').submit();
}
Live test case(为了示例,使用Google)。
答案 2 :(得分:0)
因为您在提交页面之前尝试访问页面mailer.php
从表单标记
中删除onsubmit()方法然后尝试它将起作用