JQM Listview 加载更多 demo - Warren的个人主页JQM Listview
加载更多 Demo测试数据1测试数据2测试数据3测试数据4 显示更多 Page Footer JQM Listview 加载更多 demo -
Warren的个人主页 ...
分类:
其他好文 时间:
2014-07-22 22:59:16
阅读次数:
425
package
com.example.actionBarTest.actionBarList;import android.app.ActionBar;import
android.app.Activity;import android.app.Fragment;import android.os...
分类:
移动开发 时间:
2014-05-12 15:44:57
阅读次数:
398
一:基础概念:
1.上拉指的是IO口在悬空时为高电平,下拉为低电平,浮空和开漏随IO变化,推挽则具有比较好的驱动能力。
2.推挽输出:单片机引脚可以直接输出高电平电压,高低电平都可以输出,既可以向负载灌电流,又可以从负载 吸收电流,带负载能力比较强。 3....
分类:
其他好文 时间:
2014-05-06 09:01:49
阅读次数:
465
1、修改注册表:开始-运行-regedit找到HKEY_CURRENT_USER\Software\Microsoft\Terminal
Server
Client\Default,删除右面的数值。这个办法只可以清除下拉框里的,但是最后一次你连接的还是显示在上面的。2、在“我的文档”下,把隐藏的“D...
分类:
其他好文 时间:
2014-05-05 22:36:07
阅读次数:
318
/**
* Java Swing 之下拉列表控件
* @author gao
*/
package com.gao;
import java.awt.FlowLayout;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPane...
分类:
编程语言 时间:
2014-05-04 00:12:16
阅读次数:
547
{{include tmpl="#header"
/}}中的include前不要加#,否则就是坑模板嵌套demo网址:http://borismoore.github.io/jsrender/demos/demos.html
分类:
Web程序 时间:
2014-05-01 19:01:40
阅读次数:
449
javaScript 关于Windows
1 Windows 对象
所有浏览器都支持 window 对象。它表示浏览器窗口。
所有 JavaScript 全局对象、函数以及变量均自动成为 window 对象的成员。
全局变量是 window 对象的属性。
全局函数是 window 对象的方法。
window.document.getElementById("header");
2...
分类:
编程语言 时间:
2014-04-30 22:27:39
阅读次数:
499
public function index(){
header('Content-Type:text/html;charset=utf-8 ');
$M = M("Constant");
$count = $M->where($where)->count();
import("ORG.Util.Page"); // 导入分页类
...
分类:
Web程序 时间:
2014-04-30 22:27:39
阅读次数:
343
header("Content-type:text/html; charset=utf-8");
function getToken($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
//相当关键,这句话是...
分类:
Web程序 时间:
2014-04-30 22:16:40
阅读次数:
373
1. $('node+next') == $('node').next()
2. $('node~siblings') == $('node').nextAll();
3. :gt(index)大于index序号的的元素,从0开始
4. :lt(index)小于index序号的元素,从0开始
4. :header 获取所有h1,h2,h3,h4...的元素...
分类:
Web程序 时间:
2014-04-29 13:45:20
阅读次数:
322