为什么这段函数第一次加载有效,可以显示出来 但是第二次加载就无效啊 求教各位高手啊 小弟在此拜谢
function a(){
    $(".circleArea").show();
    var wid = $(".circleArea").width();
    var widList = $(".circleIntroduceList").width();
    var offset = $(".circleArea").offset();
    offset.top = (offset.top + $(".circleArea").height());
    offset.left = (offset.left - (widList - wid));
    $("#circleIntroduce").offset(offset);
    $("#circleIntroduce").show();
}