HTML5で拡張されたフォーム機能について HTML5で実装可能なフォーム機能にはJSなどで拡張されていた機能が、属性を使いわけることで、 とても便利になる。 <!------ eメールの場合 ------> <form action="xxx.php" method="post"><label>メール(type="email"):<input type="email" name="email"></label><input type="submit" value="送信"></form> <!------ URLの場合 ------> <form action="xxx.php" method="post"><label>URL(type="url"):<input type="url" name="url"></label><input type="submit" value="送信