我有一个搜索表单,其中有文本框和下拉菜单,其中一些不起作用。当我点击一个选项然后隐藏它时它会起作用。如果我选择另一个选项,它会显示备份。
这是示例。
我有一个文本框,如果您选择某些选项,我会隐藏另一个文本框,然后它会显示或隐藏。如果我选择了一些东西然后去我的导航菜单然后回来形成一个应该隐藏的盒子。这是我用来隐藏东西的代码。我不确定为什么它没有设置回默认值并在页面加载时隐藏它们。这是在剃刀视图页面上。
@*hidefields - Spec Guide*@
//condition fields for the end user request form make sure you change the field ID to yours.
$(document).ready(function () {
//check to see if you are on the end users request page
if (location.pathname === '/Reporting/Summary') {
//if (document.location.href='/Tickets/New'){
//toggle the field ,description and title invisible
$('label for="CustomFieldValue@field.FieldID":contains(* On what page of the Spec Guide:)').toggle();
$('input#CustomFieldValue3').parent().toggle();
//monitor the dropdown field
$('select#CustomFieldValue2').change(function(endUserselect) {
//grab the value of the dropdown
var userSelection = $('select#CustomFieldValue2 option:selected').text();
//do the compare and toggle the field ,description and title visible
if (userSelection === 'Spec Guide') {
$('label for="CustomFieldValue@field.FieldID":contains(* On what page of the Spec Guide:)').toggle();
$('input#CustomFieldValue3').parent().toggle();
}
//hide them again if the user changes his mind
else {
$('label for="CustomFieldValue@field.FieldID":contains(* On what page of the Spec Guide:)').hide();
$('input#CustomFieldValue3').parent().hide();
}
});
}
});
@*hidefields - Spec Guide*@