0
我的代碼是:jQuery的 - 使用.change即使在下拉列表中選擇篩選結果
$('select').change(function(){
$('.sep14, .oct14').hide();
var userChoice = "'." + $('select').val() + "'";
$(userChoice).show();
});
因此,當用戶改變下拉列表中選擇兩個div與這些類隱藏,然後變將userChoice存儲爲jquery可以識別的內容,然後使用.show()再次顯示。
由於某種原因,但這似乎並不奏效,任何人都知道爲什麼?
感謝
爲什麼不鞏固? '$('。'+ this.value).show()'? – PlantTheIdea 2014-09-30 21:37:52
@PlantTheIdea正在進行重構演示,謝謝.. – 2014-09-30 21:38:58