我在 IE 8 中测试我的脚本,但是它不工作,即它没有显示任何错误。我的脚本:
$(document).ready(function(){
var type = "hat";
$('select#itemtype').change(function() {
if($("select#itemtype option:selected").text(); == type) {
$('#graphic').show();
} else {
$('#graphic').hide();
}
});
}