我正在尝试在移动设备(更具体地说是 iPhone Safari)上复制以下 Fiddle(http://jsfiddle.net/3UWk2/1/),但它似乎没有正确运行 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>