ListView class A scrollable list of widgets arranged linearly. ListView is the most commonly used scrolling widget. It displays its children one after another in the scroll direction. In the cross axis, the children are required to fill the ListView.
function changeImgWidth(){ for (i = 0; i <$('#info img').length; i++) { var imgWidth=$('#info img').eq(i).width(); if (imgWidth>612) { $('#info img').eq(i).css('width','612px'); } } } window.onload=changeImgWidth; 这里不能使用jquery的load()方法,因为IE中会失效,所以创建