คำขอโพสต์ JavaScript เช่นส่งแบบฟอร์มแสดงวิธีส่งแบบฟอร์มที่คุณสร้างผ่าน POST ใน JavaScript ด้านล่างคือรหัสที่แก้ไขแล้วของฉัน
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();
สิ่งที่ฉันต้องการจะทำคือเปิดผลลัพธ์ในหน้าต่างใหม่ ฉันกำลังใช้สิ่งนี้เพื่อเปิดหน้าในหน้าต่างใหม่:
onclick = window.open(test.html, '', 'scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,status=no');
document.body.appendChild(form)
เป็นสิ่งที่จำเป็นดูstackoverflow.com/q/42053775/58241