jQuerySharp

授权协议 MIT
开发语言 C# JavaScript
所属分类 程序开发、 其他开发相关
软件类型 开源软件
地区 不详
投 递 者 巫新知
操作系统 Windows
开源组织
适用人群 未知
 软件概览

jQuerySharp 是一个用 C# 来编写 jQuery 代码的C#类库,下面是生成的 jQuery 代码示例:

Type.createNamespace('JQuerySharp');

////////////////////////////////////////////////////////////////////////////////
// JQuerySharp.Example

JQuerySharp.Example = function JQuerySharp_Example() {
}
JQuerySharp.Example.prototype = {
   
    run: function JQuerySharp_Example$run() {
        var jq = jQuery('#test');
        jq.append('Some new content').append('A bit more');
        jq.attr('style', 'border:1px');
        if (jQuery.browser.msie) {
            alert('You\'re using IE');
        }
        jQuery('#clickme').click(Delegate.create(this, this.onClick));
        jQuery().ready(Delegate.create(this, this.onReady));
    },
   
    onClick: function JQuerySharp_Example$onClick() {
        jQuery('#newcontent').html('<h1>new stuff here</h1>');
        var test = jQuery('#cloneme').clone();
        var jq = jQuery('#newcontent');
        jq.attr('style', 'color:red').append('<p>This comes from attr</p>');
        jq.append(test);
    },
   
    onReady: function JQuerySharp_Example$onReady() {
        alert('Called from ready');
        var plugin = jQuery('#test');
        plugin.accordion();
    }
}

JQuerySharp.Example.createClass('JQuerySharp.Example');

相关阅读

相关文章

相关问答

相关文档