我在 DIV 中有两种类型的内容。默认视图是div#BDT
. 现在我想使用 SELECT 更改内容。
<form method="post" action="domain_reseller.html">
<p align="right">Choose Currency:</p>
<select name="currency" onchange="submit()">
<option value="1" selected="selected">BDT for Bangladesh</option>
<option value="2">USD For World Wide Country</option>
</select>
</form>
<div class="USD" id="USD">
This Is USD Currency
</div>
<div class="BDT" id="BDT">
This Is USD Currency
</div>