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">
I'm developing a Google Chrome extension and I want to add <li> to <ul> tag via JavaScript:
<li>
<ul>
var newLI = document.createElement("LI