码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
[复变函数]第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
Javascript面向对象编程(二):构造函数的继承
这个系列的第一部分,主要介绍了如何"封装"数据和方法,以及如何从原型对象生成实例。今天要介绍的是,对象之间的"继承"的五种方法。比如,现在有一个"动物"对象的构造函数。 function Animal(){ this.species = "动物"; }还有一个"猫"对象的构造函数。 f...
分类:编程语言   时间:2014-04-30 01:48:45    阅读次数:570
php 获取客户端ip
1 function getRealIp() { 2 if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown")) 3 $ip = getenv("HTTP_C...
分类:Web程序   时间:2014-04-30 01:42:33    阅读次数:422
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
鼠标滚轮事件的监听
鼠标滚轮事件的监听原理:判断鼠标滚轮的滚动获取一个值,根据这个值判断滚动的方向。分析:首先,判断滚轮方向。Firefox:detail,取值为-/+3(负值向上,正值向下);其他:wheelDelta,取值为+/-120(正值向上,负值向下)。兼容所有浏览器的的封装:function scrollE...
分类:其他好文   时间:2014-04-27 21:28:13    阅读次数:502
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!