1
我在使用數據標記中的多個值並應用基於此id的過濾器時遇到問題。因爲它在數據標籤中顯示多個ID,所以它不會顯示兩個ID。在http://jsfiddle.net/rWhVN/jquery數據屬性多個值
<script type="text/javascript">
$(function() {
$('#content').removeClass('nojs');
$('.row').not('#q1').hide();
$('select').on('change', function() {
var question = $(this).parent().parent().attr('id');
var answerID = $(this).children('option:selected').attr('id');
var loadQuestion = $(this).children('option:selected').data('load');
$('#' + question).addClass('answered');
$('.row').not('.answered').hide();
$('#' + loadQuestion).fadeIn();
console.log(loadQuestion);
});
});
</script>
<option id="q1a1" data-load="q2, q8">Answer 1</option>
問題一個答案
例一應顯示問題,兩個問題八。
不知道你如何分割出來,所以任何幫助表示讚賞。
這就是真正有用的,我還沒有在地圖功能看起來又是那麼非常感謝您的幫助 – user989952 2013-04-23 00:17:29