读书人

jquery ui resieable图标保持在滚动条

发布时间: 2013-02-03 12:33:31 作者: rapoo

jquery ui resieable图标保持在滚动条右下侧

?

<!DOCTYPE html><html><head>    <title>title</title></head><body>  <div name="code">$(document).ready(function() {    $(".resizable")      .wrap('<div/>')        .css({'overflow':'hidden'})          .parent()            .css({'display':'inline-block',                  'overflow':'hidden',                  'height':function(){return $('.resizable',this).height();},                  'width':  function(){return $('.resizable',this).width();},                  'paddingBottom':'12px',                  'paddingRight':'12px'                                   }).resizable()                    .find('.resizable')                      .css({overflow:'auto',                            width:'100%',                            height:'100%'});  });

?

在此调试:

http://jsfiddle.net/Ka7P2/2/

读书人网 >Web前端

热点推荐