zoukankan      html  css  js  c++  java
  • 【jQuery UI 1.8 The User Interface Library for jQuery】.学习笔记.2.更换主题

    <!DOCTYPE html>
    <html>
      <head>
      <meta charset="utf-8">
      <title>Widget Factory - calculator
      </title>
      <link rel="stylesheet"  
        href="css/smoothness/jquery-ui-1.8.9.custom.css">
      <link rel="stylesheet"   href="css/jquery.ui.claculator.css">
      </head>
      <body>
        <div id="calc">
        </div>
        <script src="development-bundle/jquery-1.4.4.js">
        </script>
        <script src="development-bundle/ui/jquery.ui.core.js">
        </script>
        <script  
          src="development-bundle/ui/jquery.ui.widget.js">
        </script>
        <script src="js/jquery.ui.calculator.js">
        </script>
        <script>
          (function($) {
            $("#calc").calculator({
              autoShow: false,
              show: function(e, ui) {
                alert(e + ", " + $(ui).attr("id");
              }
            });
          })(jQuery);
        </script>
      </body>
    </html>
  • 相关阅读:
    链接Oracle数据库
    Spring boot Mybatis
    Spring Boot 部署
    javaEE应用组件
    maven项目搭建步骤
    Spring Boot中Redis的使用
    Struts2 Hello,Wold
    使用JSON
    Spring中Quartz的配置
    Guice示例
  • 原文地址:https://www.cnblogs.com/msdynax/p/3254880.html
Copyright © 2011-2022 走看看