aタグでsubmit
サンプルソース
忘れがちなのでメモ。
↓これだけです。
01 | < form method = "post" action = "####" name = "LOGIN" > |
02 |
03 | < input type = "text" name = "" value = "" > |
04 | < input type = "text" name = "" value = "" > |
05 | < input type = "text" name = "" value = "" > |
06 | < input type = "text" name = "" value = "" > |
07 |
08 | < a href = "javascript:void(0);" onclick = "document.LOGIN.submit();return false;" >ログイン</ a > |
09 |
10 | </ form > |