首页 > 代码库 > TiQuery
TiQuery
TiQuery 是一个基于JQuery 的在Titanium上使用的 javascript 库
TiQuery 为TI 提供了很快捷的方法:
// Utilities$.info(‘My message‘);$.error(‘my error message‘);$.include(‘path/to/file.js‘);$.currentWindow;// create* methodsvar window = $.Window({ src: ‘path/to/file.js‘});var view = $.View({ width: 100, height: 100, backgroundColor: ‘red‘});window.add(view);
事件:
TIQuery 能很方便地增加和触发事件:
$(view).click(function(event) { // do something});$(view).click(); // triggers the click event// 也可注册定制事件$.registerEvent(‘myEvent‘);$(window).myEvent(function() { // do something});
HTTP Client
使用TIQuery从HTTP获得数据也是很简单的:
$.get(‘http://www.google.com‘, function(data) { // do something with text data});$.post(‘http://www.example.com‘, {var1: ‘value1‘, var2: ‘value2‘}, function(data) { // do something with text data});$.getJSON(‘http://www.example.com/file.json‘, function(data) { // do something with json object});$.getXML(‘http://www.example.com/file.xml‘, function(data) { // do something with xml dom object});
View the wiki for more information.
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。