1

我有一个下拉列表,其中列出了用户可以生成的报告类型,一旦他们选择了报告类型,它将显示另一个下拉列表,如此屏幕截图所示。在此处输入图像描述

<select name="type_of_report" id="type_of_report">
<option value="" selected="selected"></option>
<option value="all_students">All students</option>
<option value="state">State</option>
<option value="sport_id">Sport</option>
<option value="major_id">Interest of Study</option>
<option value="graduation_year">High School Graduation Year</option>
<option value="recruitment_place_id">Where they heard about us</option>
</select>

如果他们选择状态,我想要求状态字段。

理论上,这是我想做的:

$("#type_of_report").live("change", function() {
 var report_selected = $("#type_of_report").val();
});

$("form").validate({
 rules: {

  if(report_selected != '') {
    report_selected: { required: true },
  }

  type_of_report: { required: true }
 }
});
4

2 回答 2

2

我最近做了一个非常复杂的动态表单,其中包含用户可以添加的许多字段。这些是新创建的输入元素,而不是隐藏的。我只是在创建新字段required时使用 jQuery将类添加addClass到新字段中。

$("#myNewInput").addClass("required");
于 2012-09-21T14:45:28.137 回答
0

像这样的东西?

$("form").submit(function() {
 var report_selected = $("#type_of_report").val();
 if(report_selected != '' && $('#other_select').val() == '') {
    alert('selected a report, but not the 2nd one');
    return false;
 }
 return true;
});
于 2012-09-21T14:10:04.203 回答