Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 HTML 文档中有一个表单,我想将其内容作为 POST 请求提交给服务器。但是,我想将 POST 请求发送到服务器上的端口 80 以外的端口。这可能吗?
只需将其附加到操作中
<form method="post" action="http://myserver.com:1234/postHandler.php"....
对的,这是可能的:
<form action="http:/myserver:7778/process" method="post">