我有以下表格:
现在,使用英语测量系统输入所有值。我还需要允许输入Metric值。
以下是我的想法:
system unit select box
system unit select box
的状态,更改物理属性的名称(gpm,psi等)问题:
所以,我要说我为英语/公制添加了一个选择框。如何阅读该框的状态以及如何实现从英语到Metric系统的标签更改?即gpm
- > m3h
(每小时立方米)等。
答案 0 :(得分:0)
<select name="unit_system" id="unit_system">
<option value="English">English</option>
<option value="Metric">Metric</option>
</select>
<script type="text/javascript">
$("#unit_system").change(function() {
if ($('#unit_system').val() == "English")
{
$('.input_gpm').html('gpm');
}
else if ($('#unit_system').val() == "Metric")
{
$('.input_gpm').html('m3h');
}
});
</script>
<td class="input_gpm"><b>gpm</b></td>