在Javascript中,目前这些函数正在发送GET请求window.open,showmodeldialog和startDownload。
将这些请求作为POST发送的替代方法是什么。
答案 0 :(得分:0)
您可以尝试这样的事情
<form id="myForm" method="POST" action="..." target="myWindow">
<!-- Whatever you need -->
</form>
在你的javascript中:
<script>
window.open("about:blank", "myWindow", /*additional params...*/);
document.getElementById('myForm').submit();
</script>