次の Fiddle ( http://jsfiddle.net/3UWk2/1/ ) をモバイル (具体的には iPhone Safari) で複製しようとしていますが、JavaScript が正しく実行されていないようです。何か提案はありますか? ありがとう!!
js は次のとおりです。
<script>
$(document).ready(function() {
$('#00Ni0000007XPVF').bind('change', function() {
var elements = $('div.container_drop').children().hide(); // hide all the elements
var value = $(this).val();
if (value.length) { // if somethings' selected
elements.filter('.' + value).show(); // show the ones we want
}
}).trigger('change');
});
</script>