js对相同clss名改变样式
2016-11-03 本文已影响0人
Mr丶T
function schedulefun(){
schedule = $("#schedule").text();
$('.pro').each(function(){
$(this).css('width',schedule);
});
$('.proring').each(function(){
$(this).css('left',schedule);
});
}
window.onload=schedulefun;