我有两个下拉选择。一个叫做 Disciplines,另一个叫做 MensLevels 它们都基于第一个选择的值共享相同的 ID,我如何隐藏第二个选择?这是我的代码:
$("select[name=Disciplines]").change(function() {
if ($(this).val() == 'Acro') {
var PID = $(this).attr('id');
$('td:nth-child(6).attr("id") == "' + PID + '"').hide();
}
});