- 浏览: 350881 次
- 性别:
- 来自: 南宁
最新评论
-
萌蜗牛:
我也用华为smproxy包发送短信,运行一会儿后总是间隔一段时 ...
半桶水开发 CMPP2.0 with Spring + JPA 2 -
萌蜗牛:
我也用华为smproxy包发送短信,运行一会儿后总是间隔一段时 ...
半桶水开发 CMPP2.0 with Spring + JPA 1 -
萌蜗牛:
我也用华为smproxy包发送短信,运行一会儿后总是间隔一段时 ...
半桶水开发 CMPP2.0 with Spring + JPA 3 -
sw970345363:
[b][/b]
jqGrid 表格demo -
二年级chuck:
哪里有Java的验证。
reCAPTCHA 学习
文章列表
在ExtJs 论坛看到,害怕以后忘记了,先记下了.
原帖 http://www.extjs.com/forum/showthread.php?p=138408#post138408
var Ext.util.Utf8 = {
// public method for url encoding
encode : function (string) {
string = string.replace(/rn/g,"\n");
var utftext = "";
for ...
- 2008-09-18 11:53
- 浏览 1766
- 评论(0)
最近做了一个select,选择某个值时,在一个文本框内显示与这个值相关的一些数据.如选择部门时,文本框内显示此部门下所有职员.
原来是用Ext的,直接根据ID,store.get(ID)就可以选出这些内容了.
现在改用jQuery,找了一下没有发现类似的插件,请各位大大赐教
- 2008-09-18 09:59
- 浏览 1728
- 评论(0)
console.log(object[, object, ...])
在控制台输出一条消息。如果有多个参数,输出时会用空格隔开这些参数。
第一个参数可以是一个包含格式化占位符输出的字符串,例如:
console.log("The %s jumped over %d tall buildings", animal, count);
上面的例子可以用下面的无格式化占位符输出的代码替换:
console.log("The", animal, "jumped over", count, "tall buildings") ...
- 2008-09-16 08:30
- 浏览 1541
- 评论(0)
Firebug 命令行提供了一些特殊的函数
The Firebug command line provides these special functions for your convenience:
$(id)
根据ID返回一个元素,类似document.getElementById
Returns a single element with the given id.
$$(selector)
根据GSS selector返回一个元素数组
Returns an array of elements that match the given CSS selector.
$x(xpat ...
- 2008-09-16 08:29
- 浏览 1489
- 评论(1)
原文:http://sourceforge.net/docman/display_doc.php?docid=22092&group_id=99160
PHP-ExcelReader
概述
PHP-ExcelReader是一个读取Excel xsl文件内容的一个PHP类.它需要OLE包支持,但不需要运行在Windows平台上.您能从这里获取到OLE包.
从2i版开始,oleread.inc文件包含在PHP ExcelReader发行包中,所以不再需要包含OLE包了.
安装
下载包含多个文件,只有2个,reader.php和oleread.inc,是运行ExcelReader必须的 ...
- 2008-09-16 08:29
- 浏览 10519
- 评论(1)
作者 Daisuke Maki译者 张凯峰
原文:http://www.infoq.com/cn/articles/js_multithread
虽然有越来越多的网站在应用AJAX技术进行开发,但是构建一个复杂的AJAX应用仍然是一个难题。造成这些困难的主要原因是什么呢?是与服务器的异步通信问题?还是GUI程序设计问题呢?通常这两项工作都是由桌面程序来完成的,那究竟为何开发一个可以实现同样功能的AJAX应用就这么困难呢?
AJAX 开发中的难题
让我们通过一个简单的例子来认识这个问题。假设你要建立一个树形结构的公告栏系统(BBS),它可以根据用户请求与服务器进行交互,动态加载每篇文章的信息 ...
- 2008-09-16 08:26
- 浏览 1640
- 评论(0)
今天看了InfoQ上头的一篇关于js多线程编程的文章.发现这个Concurrent.Thread非常不错,顺手翻译了一下API,仅供娱乐.
API原文(日文):http://jsthread.sourceforge.net/cgi-bin/wiki/wiki.cgi?page=API_Specification
Goal(目标)
//运行函数中的线程var ui_t = Concurrent.Thread.create(function(){ var i = 0; while ( 1 ) { document.body.innerHTML = "Now calculating.. ...
- 2008-09-16 08:24
- 浏览 8102
- 评论(0)
忘了从哪里弄来的了
if (!function_exists('json_encode'))
{
function json_encode($a=false)
{
if (is_null($a)) return 'null';
if ($a === false) return 'false';
if ($a === true) return 'true';
if (is_scalar($a))
{
if (is_float($a))
{
// Always use ".& ...
- 2008-09-16 08:23
- 浏览 2499
- 评论(0)
这个的主要作用是输出php的调试信息哦.先看看截图
Firephp界面
1. 先从 Mozilla Add-ons 获取到这个addons先
2.下载 PHP的运行库
然后在页面
require('FirePHPCore/fb.php');
一下这个库
主要的函数是
The fb() Function/Method
fb( mixed $Object [, string $Label ] [, string $Type ] )
fb($Object);
fb($Object, $Type);
fb($Object, $Label);
fb($Object, $Label, $ ...
- 2008-09-16 08:22
- 浏览 1850
- 评论(0)
参考:http://www.ibm.com/developerworks/cn/opensource/os-php-flexobj/
需要PHP5支持才行,使用了__call __get __set等动态方法
class DBObject
{
private $id = 0;
private $table;
private $fields = array();
function __construct( $table, $fields )
{
$this->table = $table; //数据表名
foreach( $field ...
- 2008-09-16 08:18
- 浏览 1557
- 评论(0)
遇到这种情况的话 id可以用 2个斜杠转义 "\\"
name的话用括号括起来
$('input[name="a[]"]')
- 2008-09-16 08:12
- 浏览 1145
- 评论(0)
遇到这种情况的话 id可以用 2个斜杠转义 “\\”
name的话用括号括起来
$(’input[name="a[]“]’)...
- 2008-09-12 09:35
- 浏览 1413
- 评论(0)
原文: http://lamp.linux.gov.cn/WebStandard/short_css_21_ref.html
导入样式表的方法(示范)
<style type="”text/css”" media="”all”" title="”应用于所有媒体的样式”">
@import url(/style/css/global.css)...
- 2008-08-20 01:48
- 浏览 1490
- 评论(0)
原文:http://lamp.linux.gov.cn/WebStandard/short_css_21_ref.html
;;;;;;;;;;;;;;;;;
;; 关于php.ini ;;
;;;;;;;;;;;;;;;;;
; 这个文件必须命名为'php.ini'并放置在httpd.conf中PHPINIDir指令指定的目录中。
; 最新版本的php.ini可以...
- 2008-08-20 01:47
- 浏览 1445
- 评论(0)
?View Code INI1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
...
- 2008-08-20 01:42
- 浏览 1023
- 评论(0)