0

DDL如果选择了 a 中的项目并显示另一个文本字段供用户填写,我有一个使用 jquery 显示/隐藏的表单。

我现在使用 session 来存储表单中的所有值,因为它位于多个页面上。当用户单击上一页按钮时,我Repopulating()使用会话值。

所以有些文本框在里面Panels,我必须检查隐藏了ifradio button是什么,如果选中,然后从会话中填充值。checkedpanelpanel.Visible

如何在后面的代码中使用 jQuery 来做到这一点?还是我应该只使用面板?

这就是页面加载时我正在做的事情。

$(function () {

 $('#whereIncident').hide();

 var result = $('.drpIncidentTookPlace').val();

 if (result == "Victim-Other") {
    $('#whereIncident').show(400);
 } else {
    $('#whereIncident').hide(300);
 }
});

我正在将我的会话保存到一个班级。并根据选择的内容重新填充。

 SessionVars.Current.Incident.incidentPlace = drp_IncidentTookPlace.SelectedValue;
 SessionVars.Current.Incident.incidentPlaceOther = txt_other_type.Text;

重新弹出()

 drp_IncidentTookPlace.SelectedValue = SessionVars.Current.Incident.incidentPlace;
      if (drp_IncidentTookPlace.SelectedValue == "Victim-Other")
       {
           txt_other_type.Text = SessionVars.Current.Incident.incidentPlaceOther;
       }  

other重新填充会话时,如何使用 jQuery 重新显示隐藏字段?因为这是在后面的代码中?

4

0 回答 0