指定した文字入力したら自動で送信
html,php,javascriptで郵便番号から住所を検索する機能を作ってます。
郵便番号を入力して検索をおすと住所が自動で入力されるのはできていて、郵便番号を7文字入力すると検索ボタンをおさないで自動で住所が入力できたりできますか??
ーーーーーーーーーーーーーーーーー
<html>
<head>
<script type="text/javascript" src="postcode/postcode.js"></script>
</head>
<body style="margin:0px;">
<form name="address" style="margin: 0px;">
<table border="0" cellspacing="10" cellpadding="0">
<tr>
<td nowrap>郵便番号</td>
<td><input type="text" name="postcode3" style="ime-mode: disabled;"></td>
<td><input type="text" name="postcode4" style="ime-mode: disabled;"></td>
<td> </td>
<td><input type="button" name="GETADDRESS" value="郵便番号から住所を自動入力" onClick="javascript:checkPostcode('address','postcode','city');"></td>
</tr>
<tr>
<td colspan="4" nowrap><input type="text" name="city" style="width: 100%;"></td>
</tr>
</table>
</form>
</body>
</html>