08 2011 档案

摘要:梁宇邀请你加入SinaAppEngine。SinaAppEngine可以帮你做什么? 使用Sina App Engine;不用租服务器就可以做各种应用;可以零成本创业! 使用SAE在线代码编辑器;可以随时随地开发调试应用;只需几分钟;就能完成一个web应用! 你还可以通过SVN将应用代码;部署到Sina App Engine。在SAE上开发;就是这么简单高效! 最近访问量飙升;云豆不够用了!点击以下链接完成注册 送我点云豆吧?http://sae.sina.com.cn/activity/invite/27774/email @SinaAppEngine; 阅读全文
posted @ 2011-08-11 20:56 acjialiren 阅读(325) 评论(0) 推荐(0)
摘要:var myArray [];//数组声明对象是自我包含的数据集合,包含在对象里的数据可以通过属性(property)和方法(method)访问。getElementById();getElementsByTagName();getAttribute();setAttribute();childNodesnodeType:1 元素节点2 属性节点3 文本节点nodeValue<p id="test_p">test</p>var testp= document.getElementById("test_p");testp.first 阅读全文
posted @ 2011-08-08 22:12 acjialiren 阅读(358) 评论(0) 推荐(0)
摘要:原文:http://phrogz.net/js/classes/OOPinJS.html译文:http://groups.google.com/group/shawlqiu/web/javascript?hl=en我的理解:建设中...原文中的代码:function Person(n,race){ this.constructor.population++; // ************************************************************************ // PRIVATE VARIABLES AND FUNCTIONS // ONLY 阅读全文
posted @ 2011-08-02 23:02 acjialiren 阅读(214) 评论(0) 推荐(0)
摘要:declare @tablename sysnamedeclare @strsql nchar(500)declare tableNameCursor cursor forselect b.name from sysobjects b where xtype='U' and b.name not in (select object_name(a.parent_obj) from sysobjects a where xtype='PK' )open tableNameCursor fetch next from tableNameCursor into @tab 阅读全文
posted @ 2011-08-02 11:39 acjialiren 阅读(547) 评论(0) 推荐(0)
摘要:这个例子使我更加明白呈现数据是前端工作滴一部分如何使table中的数值变为清晰地条状图呢?听我细细道来效果图如下:http://jialiren.sinaapp.com/jdt/Html代码如下:<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>进度条列</title> <script type="text 阅读全文
posted @ 2011-08-02 09:04 acjialiren 阅读(2355) 评论(0) 推荐(0)