0

我有一个选择表格,有普通,家庭,豪华,行政等各种酒店房间,每个都有相应的价格让我们说普通房间我会设置300美元的价格。

在选择表格的右侧,我每次选择让我们说普通房间右侧的输入文本字段会显示价格 $300。所以基本上我使用带有代码的java脚本,var ordinary=document.getElementByID("ord").value这样我就可以设置价格,var ordinary= 3500. 接下来是每次我在选择表单中选择普通房间时从变量普通中获取值以显示在输入文本字段中,但我该怎么做呢?

这是代码

<script language="javascript" type="text/javascript">
    var ordinary= document.getElementById("ord").value;
    var ordinary= 5300;

</script>

<form action="insert.php" method="post">
    <table align="center"><tr><td>
            <font face="Arial, Helvetica, sans-serif">RESERVATIONS</font> 
        </td></tr><hr color="#00CC99"/> <br/>
    </table>
    <table border="0" align="center">
        <tr>    
            <th align="justify"> Name: &nbsp </th> 
            <td><input type="text" name="name"></td> 
        </tr>
        <tr>
            <th align="justify"> Contact Number: &nbsp; </th> 
            <td><input type="text" name="contact"></td> 
        </tr>
        <tr>
            <th  align="justify">Room Type: &nbsp;</th>
        <td>
            <select name="roomType">
                <option value="---">---------------------------</option>
                <option value="Ordinary " id="ord">Ordinary</option>
                <option value="Family ">Family</option>
                <option value="Superior ">Superior</option>
                <option value="Deluxe ">Deluxe</option>
                <option value="Corner Suite King">Corner Suite King</option>
                <option value="Executive ">Executive</option>
                <option value="Executive Suite">Executive Suite</option>
                <option value="Grand Executive">Grand Executive</option>
                <option value="Presidential ">Presidential</option>
            </select>
        </td>
            <td>

            </td>
        </tr>
        <tr>
            <th align="justify">AddOn Services: &nbsp;</th>
        </tr>
    </table>
</form>
4

1 回答 1

3

给出select一个idofroomType然后使用这个

var e = document.getElementById("roomType");
var desiredValue = e.options[e.selectedIndex].value;

options 的值应该是脚本所需的数据。您应该调用selectedIndexselect 元素的 而不是options,否则这将是很多我们都必须输入的代码......没有乐趣

    <select name="roomType" id="roomType">
        <option value="---">---------------------------</option>
        <option value="5300">Ordinary</option>
        <option value="SomePrice">Family</option>
        <option value="SomePrice">Superior</option>
        <option value="SomePrice">Deluxe</option>
        <option value="SomePrice">Corner Suite King</option>
        <option value="SomePrice">Executive</option>
        <option value="SomePrice">Executive Suite</option>
        <option value="SomePrice">Grand Executive</option>
        <option value="SomePrice">Presidential</option>
    </select>

将 SomePrice 更改为您想要的值。

于 2013-03-13T01:27:52.567 回答