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.
私はリモートのウェブサイトを持っています(私のものではありません)
<input type=text id="num" name="num" size="10" maxlength="10"/> <a id="setnum" href="#">Send</a> <span id="result"></span>
inputboxを設定してフォームを送信する方法はありますか?
はい、GETまたはPOST(フォームの属性に応じてmethod=)フォームの属性で指定された場所にaction=データをkey=valueペアで送信します。ここで、は入力要素keyの属性であり、は必要な値です。name=value
GET
POST
method=
action=
key=value
key
name=
value
Googleのキーワードが必要な場合:
でPOSTリクエストを送信する方法<insert your favorite programming language here>
<insert your favorite programming language here>