郵便番号から住所自動入力の商用版サイトです。
By ピエールソフト 2025.7.12
htmlに1行追加で 住所入力を自動化 できます。

ガイダンス画面のデザイン変更(5)

■郵番欄に 438 0078 と入力してみよう。
 →デザインを変更して表示します。
 ※この変更は、Ver7.267 からの適用です。


デザイン変更のデモ(5)

郵便番号 -
都道府県
住所

[ポイント]
▼cssでは次のように記述しています。

[cssの記述例]
#autozip {
	background: #3366ff !important;
}
/*                       Ver7.267から変更
#autozip a {
	background: #f5f5f5 !important;
	color: #333333 !important;
}
#autozip a:hover {
	background: #666666 !important;
	color: #ffffff !important;
}
*/
#zip_header,#zip_count {
	background: #333333 !important;
	color: #f5f5f5 !important;
	padding: 3px 2px !important;
	white-space: nowrap;
}

▼htmlでは次のように記述します。‥2025.7.12 修正

<input type="hidden" id="zipaddr_param" value="bgc=#3366ff,ovr=#00bbff,ovc=#223a70">

 bgc:初期の背景色、上記#autozipのbackgroundと合わせる。
 ovr:マウスオーバー時の背景色
 ovc:マウスオーバー時の文字色

▲ページの先頭へ