Form gönderme gibi JavaScript yayın isteği , JavaScript'te POST aracılığıyla oluşturduğunuz bir formu nasıl göndereceğinizi gösterir. Aşağıda değiştirilmiş kodum.
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();
Yapmak istediğim sonuçları yeni bir pencerede açmak. Şu anda yeni bir pencerede bir sayfa açmak için böyle bir şey kullanıyorum:
onclick = window.open(test.html, '', 'scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,status=no');
document.body.appendChild(form)
olan gerekli bkz stackoverflow.com/q/42053775/58241