IE8中的jQuery.corner.js很奇怪

时间:2012-03-11 04:15:23

标签: jquery css wordpress internet-explorer-8 rounded-corners

我正在使用jQuery.corner.js在http://s3.mynewsitereview.com/category/ask-holly

的所有博客帖子的标题后面放置一个顶级背景

它在Firefox,Opera,Safari,Chrome和IE9中运行良好。但是在IE8中,只有第一个帖子有圆角。任何后续帖子的标题都没有圆角。

1 个答案:

答案 0 :(得分:1)

ID必须是唯一的。将你的id更改为类并选择使用类选择器,事情应该开始工作。

您的代码将更改为:

$(function() { 
    $('.posthead').corner("top"); 
});

你的div成为

<div class="posthead" ...