Jquery-ui可调整大小的插件不起作用

时间:2012-05-24 18:07:50

标签: javascript jquery jquery-ui jquery-resizable

我到底在做什么?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Draggable crop</title>
        <script type="text/javascript" src="/scripts/jquery.js"></script>
        <script type="text/javascript" src="/scripts/jquery.ui.js"></script>
        <script type="text/javascript">
            $(document).ready(function() {
                $('.image_outline').resizable();
            });
        </script>

        <style type="text/css">
            .image_outline {
                border: dashed 1px #000;
                width: 300px;
                height: 200px;
            }
        </style>
    </head>

    <body>
        <div class="image_outline"></div>
    </body>
</html>

以下是jsfiddle上的代码:http://jsfiddle.net/dAHt8/

为什么可调整大小的插件没有使div可以调整大小?

1 个答案:

答案 0 :(得分:2)

添加正确的CSS链接后正常工作:

<强> jsFiddle example

对于那个jsFiddle我链接到托管的jQuery UI CSS:http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/ui-lightness/jquery-ui.css