Żądanie postu JavaScript, takie jak przesyłanie formularza, pokazuje, jak przesłać formularz utworzony przez POST w JavaScript. Poniżej znajduje się mój zmodyfikowany kod.
var form = document.createElement("form");
form.setAttribute("method", "post");
form.setAttribute("action", "test.jsp");
var hiddenField = document.createElement("input");
hiddenField.setAttribute("name", "id");
hiddenField.setAttribute("value", "bob");
form.appendChild(hiddenField);
document.body.appendChild(form); // Not entirely sure if this is necessary
form.submit();
To, co chciałbym zrobić, to otworzyć wyniki w nowym oknie. Obecnie używam czegoś takiego do otwierania strony w nowym oknie:
onclick = window.open(test.html, '', 'scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,status=no');
document.body.appendChild(form)
jest to konieczne, zobacz stackoverflow.com/q/42053775/58241