摘要: 来自《jquery 权威指南》输入某个字符,选择相应的验证类型,并输出验证结果-----------------------------------效果显示:详细代码:jQuery 字符串类型检测 检测内容: 选择类型: 阅读全文
posted @ 2013-12-23 23:36 php之路 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 来自于《jquery 权威指南》------------------------------jQuery执行效果:-----------------------------------------------------------------#btn1的click事件,要调用其它作用域的事件函数,需要用到$.proxy工具函数。 阅读全文
posted @ 2013-12-23 22:35 php之路 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 来自于《jquery权威指南》--------------------------------------点击button后,获取到json文件数据,显示如下:Json文件:[{ "name":"王美丽", "sex": "女", "age":29},{ "name":"梁帅哥", "sex": "男", "age":30}]index.html代码:jQuery注意内容:(1)$.getJSON 阅读全文
posted @ 2013-12-21 21:10 php之路 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 来自于《jquery权威指南》-------------------点击删除时,弹出提示框,并做相应的删除确定或取消完整代码如下:jQuery 可以删除的记录 删除时提示 是否确定删除该记录? 阅读全文
posted @ 2013-12-21 10:45 php之路 阅读(1040) 评论(0) 推荐(0) 编辑
摘要: 来自《sencha touch权威指南》第12章,374页开始-----------------------------------------------------PollingProvider 主要用于客户端每隔一段时间向服务器发出一次轮询请求,服务器端在接收到请求后向客户端返回数据。在使用 PollingProvider 的时候,可以先创建 Ext.direct.PollingProvider 类的对象,然后使用 Ext.direct.Manager 类的addProvider 方法添加该 Provider。-----示例--------app.js代码Ext.require([ 阅读全文
posted @ 2013-12-07 21:04 php之路 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 来自《sencha touch权威指南》第11章,323页开始---------------------------------------------------index.html代码:sencha touchapp.js代码:Ext.require(['Ext.DataView','Ext.TitleBar','Ext.Toolbar','Ext.Panel']);Ext.application({ name: 'MyApp', icon: 'images/icon.png', glossOn 阅读全文
posted @ 2013-12-07 09:48 php之路 阅读(604) 评论(0) 推荐(0) 编辑
摘要: 来自《sencha touch权威指南》第10章,315页开始app.js代码如下:Ext.require(['Ext.Video','Ext.MessageBox','Ext.Toolbar','Ext.Panel']);Ext.application({ name: 'MyApp', icon: 'images/icon.png', glossOnIcon: false, phoneStartupScreen: 'images/phone_startup.png', tablet 阅读全文
posted @ 2013-12-07 08:16 php之路 阅读(1816) 评论(0) 推荐(0) 编辑
摘要: 来自《sencha touch权威指南》第9章,276页开始-------------------------------------------------app.js代码如下:Ext.require(['Ext.data.Store','Ext.dataview.List','Ext.MessageBox']);Ext.application({ name: 'MyApp', icon: 'images/icon.png', glossOnIcon: false, phoneStartupScreen:  阅读全文
posted @ 2013-12-05 23:13 php之路 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 来自《sencha touch权威指南》,约198页开始通过php脚本,可以将mysql数据库的数据作为json数据格式进行读取。(1)php代码(bookinfo.php):0){ while($obj = mysql_fetch_object($result)){ $arr[] = $obj; } echo '{"success": true, "books": '.json_encode($arr).'}';}else{ echo '{"success": false,"mess 阅读全文
posted @ 2013-12-04 22:47 php之路 阅读(704) 评论(0) 推荐(0) 编辑
摘要: 来自《sencha touch权威指南》,约193页开始-------------------------------------(1)app.js代码:Ext.require(['Ext.data.Store','Ext.data.reader.Xml','Ext.dataview.DataView']);Ext.application({ name: 'MyApp', icon: 'images/icon.png', glossOnIcon: false, phoneStartupScreen: 'im 阅读全文
posted @ 2013-12-04 22:08 php之路 阅读(377) 评论(0) 推荐(0) 编辑