$('.myclassname').mouseover(function(){
if($(this).children('span').css('font-weight')=='normal')
{..do something... }
}
为什么“做某事”在 Chrome 上有效,但在 Firefox 16 和 Internet Explorer 9 上无效?如果我删除 if 条件,它可以工作,但我需要它,所以我不能删除。这是CSS
div.myclassname span {...; font-weight:normal ; ...}