标签: javascript google-chrome-devtools html-form
一个简单的html页面,
<body> <form method="POST" action="abc"> <input ... /> </form> </body>
使用javascript
document.getElementsByTagName('form')[0].submit()
请求确实已提交(服务器返回文件作为下载),但我在网络选项卡中找不到任何活动。
任何想法?提前谢谢。
更新 Firefox正在很好地捕获它。