[新着] Webテンプレートを仮オープンしました
<label for="sel1">問い合わせたい商品をえらんでください</label>
<select id="sel1">
<option value="aa">AA</option>
<option value="bb">BB</option>
<option value="zz">ZZ</option>
</select>
<script type="text/javascript">
if(location.search) {
var Value= location.search.substring(1);
var Sel=document.getElementById('sel1');
for(var i=0;i<Sel.options.length;i++) {
if(Value == Sel.options[i].value) {
Sel.selectedIndex = i;
break;
}
}
}
</script>BBが選択された状態にするリンクの例 <a href="〜〜?bb">お問い合わせフォーム</a>