我有申请表格,使用 jquery 和 php 邮件,但不能解决最后一个问题,这里是选择选项:
<select name="LV01S01F001" id="LV01S01F001" class="selectform">`
<option disabled="disabled" selected="selected">choose one</option>
<option value="ID001">01 - option name + short description</option>
<option value="ID002">02 - option name + short description</option>
<option value="ID003">03 - option name + short description</option>
</select>
因此,通过选定的选项,使用它的值打开隐藏的 DIV,使用以下脚本:
<script type="text/javascript">
$(function() {
$('#LV01S01F001').change(function(){
$('.CREDITDIV').hide();
$('#' + $(this).val()).show();
});
});
</script>
问题的关键,该脚本正在使用select option value,同时值由php mail 发送,但我需要发送它的文本,而不是它的值,所以让它看起来像:
<option>01 - option name + short description</option>
所以它会发送01 - option name + short description,但不会发送ID001作为它的值。
或者改变价值
<option value="ID003">
别的东西?
先感谢您!