| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
12年前发布

GWT的jQuery框架 GwtQuery

GwtQuery 又被称为gQuery,是一个使用GWT编写的jQuery-like API。允许GWT用在逐步增强的情景下,可能GWT部件过于重量级的地方。它同样可以用来查找和改善你的GWT部件

GwtQuery 对于使用jQuery的开发者来说,易于学习,因为它们共享相同的API,除此之外,gquery增添了很好的特性,比如类型安全的CSS、编译时间最佳化等。

示例代码:

import static com.google.gwt.query.client.GQuery.*;  import com.google.gwt.query.client.Function;    public void onModuleLoad() {    //Hide the text and set the width and append an h1 element    $("#text").hide()      .css("width", "400px")      .prepend("<h1>GwtQuery Rocks !</h1>");            //add a click handler on the button      $("button").click(new Function(){        public void f() {          //display the text with effects and animate its background color          $("#text").as(Effects)            .clipDown()            .animate("backgroundColor: 'yellow'", 500)            .delay(1000)            .animate("backgroundColor: '#fff'", 1500);        }      });  }

项目主页:http://www.open-open.com/lib/view/home/1337763220949

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1337763220949.html
GWT jQuery Ajax框架