标签: javascript
如果我在第一个下拉列表中选择x值,那么将在第二个下拉列表中选择Y值。
答案 0 :(得分:3)
如果你想在jQuery中使用它;
$("#yourFirstSelectId").change(function() { var firstSelected = $(this).val(); $("#yourSecondSelectId option:selected").val(firstSelected); });