在逛codeproject网站的时候,突然看到一篇文章:How to write plugin in Jquery.如果对E文好的同学 ,可以看上面的连接。现在我把上面网站的及结合自己的想法写这篇文章。希望能得到大牛们的支持和谅解。。。大鸟飞过。。。欢迎拍装。来源:【1】How to write p...
分类:
Web程序 时间:
2014-07-16 19:29:39
阅读次数:
254
1 void func(const vector & candidates, int target, vector & path, int cur , int sum , vector > & ret ) 2 { 3 if( sum == ...
分类:
其他好文 时间:
2014-07-16 19:24:59
阅读次数:
225
题目Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number.An example is the root-to-leaf path1->2->3which r...
分类:
其他好文 时间:
2014-07-15 23:21:33
阅读次数:
218
配置JDK环境变量配置及path和classpath的作用
分类:
其他好文 时间:
2014-07-15 09:31:25
阅读次数:
252
I have not written any articles here since I graduated from my university. Now I begin to write down my experience about my career of programming du.....
分类:
Web程序 时间:
2014-07-15 08:17:27
阅读次数:
331
Ubuntu 设置环境变量在 Ubuntu 系统中有两种设置环境变量 PATH 的方法。第一种适用于为单一用户设置 PATH,第二种是为全局设置 PATH。第一种方法:在用户主目录下有一个 .bashrc 文件,可以在此文件中加入 PATH 的设置如下:export PATH=”$PATH:/you...
分类:
其他好文 时间:
2014-07-14 15:26:49
阅读次数:
172
我新建的web程序,然后创建了一个jsp文件,然后jsp文件的第一行就出现红叉用鼠标点上去出现“Thesuperclass"javax.servlet.http.HttpServlet"wasnotfoundontheJavaBuildPath”e …… 不知道怎么说,后来就是先new 了一个ser...
分类:
编程语言 时间:
2014-07-14 15:22:37
阅读次数:
195
部分程序如下:while(count=read(fd_s,buf,512)>0)printf("count=%d\n",count);write(fd_d,buf,count);打印出来的count始终1,原因:运算符优先级的问题。改为:while((count=read(fd_s,buf,512)...
分类:
其他好文 时间:
2014-07-14 14:54:25
阅读次数:
194
本来想把前后台分离,但是阅读了cakephp的说明,才发现,cakephp根本就不支持path/to路径。
cakephp官网给出的 管理员分离方式:http://book.cakephp.org/2.0/en/development/routing.html#prefix-routing
意思就是说所有的前端后台的控制器都在一个控制器中,然后通过admin_前缀来区分是给管理员使用还是给前端...
分类:
Web程序 时间:
2014-07-14 13:50:01
阅读次数:
218
【转】SAP FTP Function本文示例如何使用SAP FTP Function将文件从应用服务器传输到另外一个FTP服务器上。DATA: BEGIN OF ig_ftp_result OCCURS 0, line(100), END OF ig_ftp_result.DATA: l_path...
分类:
其他好文 时间:
2014-07-14 10:48:27
阅读次数:
249