#### // 视频自适应
~~~
var widths = $(window).width();
if(widths > 310){
$("div.con_neirong video").css({
"width":"100%",
"height":250+'px'
});
$("div.con_neirong iframe").css({
"width":"100%",
"height":250+'px'
});
$("div.con_neirong object").css({
"width":"100%",
"height":250+'px'
});
$("div.con_neirong embed").css({
"width":"100%",
"height":250+'px'
});
}
~~~
#### // 图片自适应
~~~
$(window).load(function() {
$("div.con_neirong img").each(function(index){
var conimgmaxWidth = 310;
var conimgwidth = $(this).width();
if(conimgwidth > conimgmaxWidth){
$(this).css({"width":"100%","height":"auto"});
}
})
})
~~~