在jQuery中,我怎样才能使点击功能激活可调整大小的属性

时间:2010-07-07 05:49:13

标签: jquery jquery-ui jquery-plugins

假设我有一个div,当点击它时会将.resizable()函数添加到div,从而可以调整大小。有人会有这样的代码示例吗?谢谢!

1 个答案:

答案 0 :(得分:1)

希望这样做:

<强>的jQuery

<script type="text/javascript">
  $(document).ready( function() {
    $("#clickme").click(function() {
      $("#makethisresizable").resizable();
    });
  });
</script>

<强> CSS

<style type="text/css">
  #makethisresizable {
    width: 100px;
    height: 100px;
    background: blue;
    color: white;
  }
</style>

<强> HTML

<div id="clickme">Click me</div>

<div id="makethisresizable">Make this resizable</div>