码迷,mamicode.com
首页 >  
搜索关键字:shell Function    ( 82566个结果
[复变函数]第20堂课 5.4 整函数与亚纯函数的概念
1. 整函数 (entire function)(1) 定义: 若 $f$ 在 $\bbC$ 上解析, 则称 $f$ 为整函数.(2) 性质: $\dps{f(z)=\sum_{n=0}^\infty c_nz^n,\ 0\leq |z|<\infty}$.(3) 例: $f(z)=e^z,\sin...
分类:其他好文   时间:2014-04-30 04:37:01    阅读次数:366
Jquery表单提交方式
1.使用调用submit方法function tes1(){ //执行判断 if(校验通过){ $("#formId").submit(); }else{ return; } }2.使用ajaxSubmit 方法,用到jquery.form.js $...
分类:Web程序   时间:2014-04-30 03:23:10    阅读次数:621
LeetCode1:Two Sum
题目: Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the t...
分类:其他好文   时间:2014-04-30 03:20:07    阅读次数:502
sharepoint 弹出窗口
function openAnswerQandADialog(aUrl,aTitle) { var options = { url: aUrl, ...
分类:其他好文   时间:2014-04-30 02:47:14    阅读次数:358
Jquery异步提交$.ajax的使用
function test(){ var myEntity=new Object(); myEntity.pro1="xxx"; myEntity.pro2=10; $.ajax({ type: "post",//提交方式,post,get,put,delete 等 ...
分类:Web程序   时间:2014-04-30 02:17:27    阅读次数:484
ubuntu查找命令比较
1. find find是最常见和最强大的查找命令,你可以用它找到任何你想找的文件。 find的使用格式如下: $ find - : 所要搜索的目录及其所有子目录。默认为当前目录。 - : 所要搜索的文件的特征。 - : 对搜索结果进行特定的处理。 如果什么参数也不加,find...
分类:其他好文   时间:2014-04-28 15:33:09    阅读次数:602
iOS 小知识-tips
--->12\n%@", [[NSString stringWithUTF8String:__FILE__] lastPathComponent],__LINE__,__PRETTY_FUNCTION__ , [NSString stringWithFormat:(s), ##__VA_ARGS__...
分类:移动开发   时间:2014-04-28 15:19:16    阅读次数:579
js prototype
prototype 原型。我们每创建一个函数 都会创建一个 prototype的属性,这个属性指向了这个函数的原型对象。function A(){} ,A.prototype ,prototype原型只能运用在对象上,不能运用在对象的实例上 也就是说A.prototype 是可以的 var a=ne...
分类:Web程序   时间:2014-04-28 05:00:54    阅读次数:545
交互式shell和非交互式shell、登录shell和非登录shell的区别
交互式shell和非交互式shell、登录shell和非登录shell的区别。首先,这是两个不同的维度来划分的,一个是是否交互式,另一个是是否登录。交互式shell和非交互式shell(interactive shell and non-interactive shell)交互式模式就是在终端上执行...
分类:其他好文   时间:2014-04-28 00:05:33    阅读次数:210362
鼠标滚轮事件的监听
鼠标滚轮事件的监听原理:判断鼠标滚轮的滚动获取一个值,根据这个值判断滚动的方向。分析:首先,判断滚轮方向。Firefox:detail,取值为-/+3(负值向上,正值向下);其他:wheelDelta,取值为+/-120(正值向上,负值向下)。兼容所有浏览器的的封装:function scrollE...
分类:其他好文   时间:2014-04-27 21:28:13    阅读次数:502
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!