zoukankan      html  css  js  c++  java
  • jQuery 14 jQueryUI

    jQueryUI是封装好了的ui,只要把三个文件加入到工程目录中,然后在head中引用即可

    jquery-ui-*.*.*.custom.min.js

    jquery-ui-*.*.*.custom.min.css

    以上两个文件的版本要一样,其中*.*.*为版本号,可以到官网下载 http://jqueryui.com

    再把jquery-*.*.*.min.js也引用即可

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title></title>
        <script src="JScript/jquery-1.9.1.js" type="text/javascript"></script>
        <link href="JScript/jquery-ui-1.10.3.custom.css" rel="stylesheet" type="text/css" />   
        <script src="JScript/jquery.ui.accordion.min.js" type="text/javascript"></script>
        
       
        <script type="text/javascript">
            $(function () {
                $("#dag").dialog();
            });
        </script>
    </head>
    <body>
    <div id="dag">
      你好,我是对话框。
    </div>
    </body>
    </html>

    它有许多实例,也非常好用,可以用时再去了解它。

  • 相关阅读:
    Sort it
    set 集合容器
    convertToString与ToString的区别
    string基本字符系列容器
    辗转相除法
    进程的总结
    进程池进阶
    进程池
    生产者消费者模型
    IPC :进程之间的通信
  • 原文地址:https://www.cnblogs.com/yagzh2000/p/3099049.html
Copyright © 2011-2022 走看看