Jquery可调整大小不起作用

时间:2014-11-18 20:53:36

标签: jquery resize

我已经包含了所有jqueries文件仍然无法调整sqaure div的大小。我的文件保存在桌面上,jquery-1.11.1.min.js也出现在我的桌面上。为什么可调整大小的功能不起作用......?

    <!doctype html>
<html>
<head>
    <title>jQuery</title>
    <link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
    <script type="text/javascript" src="jquery-1.11.1.min.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
    <meta charset="utf-8" />
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style type="text/css">
        #square{
                width:400px;
                height:400px;
                background-color:green;
                padding:3px;
        }
    </style>    
</head>
<body>

    <div id="square"></div>

    <script>
        $("#square").resizable();
    </script>

</body>
</html>

2 个答案:

答案 0 :(得分:1)

我复制了您的代码并使其在我的本地工作。我几乎可以肯定它没有用,因为你没有正确加载你的资源。

您的代码中几乎没有错误:

1)将http:放在//ajaxlink标记之前script
2)您的jquery-1.11.1.min.js文件必须与您的页面位于同一目录中才能工作(我觉得它不是。如果您还没有下载源文件,可以使用jQuery's CDN here

答案 1 :(得分:1)

嘿,我刚刚尝试了你的代码,并在css文件中出现了404错误:

<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />

我用这行替换了它:

<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery.ui.all.css" />

它对我来说效果很好。