// 获取TA的评论 function getTafb(t){ var taid=$('#taid').val(); var strframe=''; $('.taReviews').append(strframe); $('iframe#frame').load(function() { var strbody = $('#frame').contents().find('#noresult').html(); if( typeof strbody != 'undefined'){ $('.taReviews').remove(); $(".rmpic").show(); return; } var serr=$('#frame').contents().find('#CDSWIDERR').html(); if(typeof serr !='undefined'){ //无相关评论 $('.taReviews').remove(); $(".rmpic").show(); }else{ var taRtngH=0; if(t=='info'){ var ofram = $('#frame').contents(); var taChoice= ofram.find('.cdsInformation').html(); var taRtng=ofram.find('.cdsTrvlRtng').html(); $(".rmpic").remove(); $("#taRtng").html(taChoice+taRtng); ofram.find('.cdsInformation').parent('.cdsWrap').remove(); ofram.find('.cdsTrvlRtng').remove(); var taRtngH=$('#taRtng').height(); $("#taRtng").addClass("taRtng"); } var taHeight = $('#frame').contents().find('#CDSPOP').height(); $('iframe#frame').height(taHeight) } }); }