我正在尝试使用两个条件类型逻辑选择选项值。我让它们工作但是当我选择一个时,另一个擦除自身,这不是理想的效果。我希望每个人都能彼此独立工作。
这是我的jquery:
$("#00NK0000001wHIH").change(function() {
var value = $(this).find("option:selected").attr("name");
var theDiv = $(".is" + value);
theDiv.slideDown().removeClass("hidden");
theDiv.siblings('[class*=is]').slideUp(function() {
$(this).addClass("hidden");
});
});
$("#00NK0000001n3SA").change(function() {
var value = $(this).find("option:selected").attr("name");
var theDiv = $(".is" + value);
theDiv.slideDown().removeClass("hidden");
theDiv.siblings('[class*=is]').slideUp(function() {
$(this).addClass("hidden");
});
});
答案 0 :(得分:2)
您正在使用"兄弟姐妹"并且所有这些都是兄弟姐妹,只需将所有与00NK0000001wHIH相关的内容包装在一个div中,所有这些都应该有效。
$errors=@(
"Start Date must be between 1995 and 9999",
"SYSTEM.CONTACT_TYPE",
"DuplicateExternalSystemIdException",
"From date after To date in address",
"Missing coded entry for provider type category record"
)
Select-String -Path D:\log.txt -NotMatch -Pattern $errors