jQuery UI 框架 jQuery Stone UI

码农软件 · 软件分类 · jQuery UI框架 · 2019-12-19 18:57:02

软件介绍

jQuery StoneUI 为网页开发提供了一系列的常用UI组件,包括窗口、对话框、布局等等,提供漂亮的UI界面,基于面向对象方式实现,方便扩展

示例代码:

<!-- include core.js -->
<script type="text/javascript" src="../src/js/core.js"></script>
<script>
    var Smile = stone.Class.extend({
        init: function() {
            Log.out('init smile');
            this.name = 'super';
        },
        smile : function(name) {
            Log.out('super\'s smile > ' + name);
        }
    });

    var Hello = Smile.extend({
        init: function(){
            Log.out('init hello');
            Smile.fn.init.call(this);
        },
        say: function(){
            Log.out('hello\'s say');
        }
    });

    var h = new Hello();
    h.say();
    h.smile('h');
</script>

本文地址:https://codercto.com/soft/d/21512.html

Data-intensive Text Processing With Mapreduce

Data-intensive Text Processing With Mapreduce

Jimmy Lin、Chris Dyer / Morgan and Claypool Publishers / 2010-4-30 / USD 40.00

Our world is being revolutionized by data-driven methods: access to large amounts of data has generated new insights and opened exciting new opportunities in commerce, science, and computing applicati......一起来看看 《Data-intensive Text Processing With Mapreduce》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

随机密码生成器
随机密码生成器

多种字符组合密码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器