码迷,mamicode.com
首页 > 2015年06月02日 > 全部分享
easyUI的iframe子页面操作父页面元素
曾经试过这样的方法 ????? 在iframe子页面获取父页面元素 ????? 代码如下: ????? $(‘#objId‘, parent.document); 这样可以获得父页面的元素,但是调用EasyUI的方法的时候,就会报错。 郁闷了很久很...
分类:其他好文   时间:2015-06-02 23:34:00    阅读次数:325
Junit Test With Selenium Driver
Junits 和 Selenium ? ? Junits 处理的是unit level 的测试;Selenium 处理的是 functional leve 的测试。虽然它们是完全不同,但仍然可以用Junit 来写 Selenium 测试。 一个完整的例子 import?java.util.con...
分类:其他好文   时间:2015-06-02 23:35:12    阅读次数:337
IOS 练习 BLOCK 调用
//FIRST typedef?void(^TellPicBlock)(NSString?*albumPic)?;//typedef定义BLOCK @interface?PersonProfileViewController?:?UITableViewController? @property?(nonatomic,copy)?TellPicBlock?TBloc...
分类:移动开发   时间:2015-06-02 23:33:11    阅读次数:352
iOS_UITextField 基本操作
基本操作UITextField *userNameTextField = [[UITextField alloc] init]; userNameTextField.frame = CGRectMake(30, 100, 220, 50); [self.window addSubview:userNameTextField]; [userNameTextField relea...
分类:移动开发   时间:2015-06-02 23:33:36    阅读次数:331
第十一周项目-1
#include #include using namespace std; class Stu   //声明基类 { public: Stu(int n, string nam);  //基类构造函数 void display();          //成员函数,输出基类数据成员 protected:        //(*)访问权限为保护型的数据成员 int num;   ...
分类:其他好文   时间:2015-06-02 23:34:43    阅读次数:286
ChrisRenke/DrawerArrowDrawable源码解析
转载请注明出处 源码下载地址 这次解析的控件DrawerArrowDrawable是一款侧拉抽屉效果的控件,在很多应用上我们都可以看到(例如知乎),控件的github地址为https://github.com/ChrisRenke/DrawerArrowDrawable 大家可以先来看一下控件的效果 这个控件的作者,也写过一篇文章对控件的制作过程做了说明,其中更多的是涉及箭头的...
分类:其他好文   时间:2015-06-02 23:32:53    阅读次数:437
Linux Shell脚本攻略(1.12)
1.12 函数和参数 和其他脚本语言一样,Bash同样支持函数,并且可以传递参数。 1.12.1 函数定义和传参#!/bin/bash function fname() #也可以用fname()代替 { echo $1,$2; #访问参数1和参数2 echo "$@"; #以列表的方式一次性打印所有参数 echo "$*";...
分类:系统相关   时间:2015-06-02 23:34:32    阅读次数:343
tomcat启动报错:java.net.BindException: Permission denied <null>:80
1,启动报错显示[org.springframework.web.servlet.DispatcherServlet]FrameworkServlet 'springMvc': initialization completed in 382 ms Jun 01, 2015 6:39:06 PM org.apache.coyote.http11.Http11Protocol start SEVERE:...
分类:编程语言   时间:2015-06-02 23:34:43    阅读次数:605
用Visual Studio将Objective-C编译为C++
编译器支持谷歌和苹果公司都使用Clang作为它们的C++前段。为了使他们的代码运行在Windows上,微软不得不将Visual C++的后端C2和Clang结合起来。(Clang是一个C语言、C++、Objective-C、Objective-C++语言的轻量级编译器,源代码发布于BSD协议下。译者注)IDE支持在Visual Studio中Objective-C具有语法高亮、代码完成和调试支持等功...
分类:编程语言   时间:2015-06-02 23:31:52    阅读次数:373
用 PowerShell 读写注册表
用 PowerShell 读写注册表...
分类:系统相关   时间:2015-06-02 23:32:43    阅读次数:510
Notification Centers 通知中心
Notification Centers 通知中心 A notification center manages the sending and receiving of notifications. It notifies all observers of notifications meeting specific criteria. The notification infor...
分类:其他好文   时间:2015-06-02 23:31:53    阅读次数:502
hdu1848 Fibonacci again and again(SG函数博弈)
现在换是看不明白SG函数的求法什么的 暂时先当模板题吧 函数mex1就是求g(x) 然后异或 #include #include #include #include using namespace std; int k,fibo[100],f[10001]; int mex1(int p){ int i,t; bool g[101]={0}; for(i=0;i<k...
分类:其他好文   时间:2015-06-02 23:34:00    阅读次数:415
Solution to Triangle by Codility
question: https://codility.com/programmers/lessons/4 we need two parts to prove our solution. on one hand, there is no false triangular. Given the array has been sorted, if A[i]+A[i+1]>A[i+2]...
分类:其他好文   时间:2015-06-02 23:32:26    阅读次数:361
解决Linux(ubuntu),windows双系统重装后恢复开机选单
1 重装ubuntu后恢复开机选单十分简单。直接更新grub就可以了: sudo update-grub a 获取root权限:        sudo -i b  查看盘符列表(如果你知道你的ubuntu在哪个分区就不必了):      fdisk -l      找到id为83的盘符sda?(即linux所在的盘符) c   加入mnt:      sudo mount...
分类:Windows程序   时间:2015-06-02 23:31:22    阅读次数:407
Solution of Codility
Solution of Codilitycodility.com is another great place to improve your programming skill. Train myself , and record here.Lesson 1: Time Complexity Lesson 2: Counting Elements Lesson 3: Prefix Sums...
分类:其他好文   时间:2015-06-02 23:30:49    阅读次数:247
[Servlet3.0新特性]注解替代配置文件
注解替代配置文件...
分类:其他好文   时间:2015-06-02 23:31:00    阅读次数:287
题目1003:A+B
题目描述: 给定两个整数A和B,其表示形式是:从个位开始,每三位数用逗号","隔开。 现在请计算A+B的结果,并以正常形式输出。 输入: 输入包含多组数据数据,每组数据占一行,由两个整数A和B组成(-10^9  输出: 请计算A+B的结果,并以正常形式输出,每组数据占一行。 样例输入: -234,567,890 123,456,7891,234 2,345,678 样例输出: ...
分类:其他好文   时间:2015-06-02 23:29:59    阅读次数:235
2444条   1 2 3 4 5 6 ... 144 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!