These articles provide how-to information to help you make use of specific technologies and APIs.
注記: This page is going to be a mess for a little while until we finish migrating content. Our apologies!
- CSS developer guide
- Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in HTML
- DOM developer guide
- The Document Object Model is an API for HTML and XML documents. It provides a structural representation of the document, enabling the developer to modify its content and visual presentation. Essentially, it connects web pages to scripts or programming languages.
- FormData オブジェクトの利用
FormDataオブジェクトは、XMLHttpRequestを使用して送信するためのキーと値のペアのセットを収集可能にします。本来はフォームデータの送信に使用することを想定していましたが、キーのついたデータを伝送するためにフォームとは独立して使用することもできます。伝送されるデータは、フォームのエンコードタイプが "multipart/form-data" に設定されている場合に、submit()メソッドで送信する際に使用するデータと同じ形式です。
- JavaScript
- JavaScript is the powerful scripting language used to create applications for the Web.