程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> jquery ui-jQuery UI怎樣怎樣正確使用

jquery ui-jQuery UI怎樣怎樣正確使用

編輯:編程綜合問答
jQuery UI怎樣怎樣正確使用

各位大神,求助
初次接觸jQuery UI,不知道怎樣能夠應用到自己的頁面中。我在http://jqueryui.com/themeroller/中下載了一個主題,下載後的文件解壓如下圖:
解壓後所有的文件

我在自己的頁面中引用如下,

 <head>
    <title></title>
    <link href="jquery-ui.css" rel="stylesheet" type="text/css" />
    <style>
              #gragdiv
          {
          width:100px;
        height:100px;
        background-color:#eeffee;
        border:1px solid black;
        padding:5px;

        }
    </style>
    <script src="js/jquery-ui.js" type="text/javascript"></script>
    <script src="js/jQuery.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(function () { $("#gragdiv").draggable(); })
    </script>
</head>
<body>
<div id=gragdiv>drag this element around the page</div>

</body>
</html>

是為了學習jQuery UI的基本交互功能,但是不能夠實現。
    我應該怎樣做,或者是要引用那些腳本才能夠使用jQuery UI 這個庫。

最佳回答:


類庫導入順序反了,要先導入jquery,再試jquery.ui,jquery.ui依賴jquery

     <script src="js/jQuery.js" type="text/javascript"></script>
    <script src="js/jquery-ui.js" type="text/javascript"></script>
caicailove29
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved