码迷,mamicode.com
首页 >  
搜索关键字:function 函数调用    ( 59763个结果
编译安装shibboleth-sp遇到的问题
In file included from mod_shib_20.cpp:68: mod_shib.cpp:118: warning: deprecated conversion from string constant to 'char*' mod_shib.cpp: In member function 'virtual const char* ShibTargetApache::get...
分类:其他好文   时间:2014-05-07 06:04:50    阅读次数:363
Javascript的一些小知识点
小弟五一回家去了,本想好好的享受下五一假期,谁知悲剧的人生不需要解释。好不容易过五关斩十将,跨千山趟万水,回到家里。吃着老妈做的好菜,第二天就莫名其妙的急性肠炎,这肚子闹腾的。NND,气死哥了,早知道就不回家了。好了,废话不多说,进入主题。 ================ 关于clientHeight、offsetHeight、scrollHeight window.screen.avai...
分类:编程语言   时间:2014-05-07 04:19:56    阅读次数:379
Python快速学习09: 函数的参数
前言   系列文章:[传送门]   继续干起来!!   正文     我们已经接触过函数,函数是可以被引用的(访问或者以其他变量作为其别名),也作为参数传入函数,以及作为列表和字典等等容器对象的元素(function)的参数(arguments)传递。       传递函数       形式参数             位置参数         默认参数      ...
分类:编程语言   时间:2014-05-07 03:31:03    阅读次数:369
Javascript创建对象的几种方式
//1、工厂模式 function createCar(){ var car = new Object(); car.color="red"; ...
分类:编程语言   时间:2014-05-07 02:06:50    阅读次数:520
滚动浏览
今天下午做了一个滚动浏览效果,贴在此,积累$(function(){ /* * 滚动浏览 */ $.fn.autoScroll = function(o){ o = $.extend({ speed: 20, step : 1, up : null, down : null }, o || {})....
分类:其他好文   时间:2014-05-07 01:49:02    阅读次数:234
Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the
Sys.Application.add_load(function() { var form = Sys.WebForms.PageRequestManager.getInstance()._form; form._initialAction = form.action = window.location.href; }); if (!documen...
分类:Web程序   时间:2014-05-06 23:36:38    阅读次数:408
Jquery 方式获取 iframe Dom元素
Jquery 方式获取 iframe Dom元素 测试页面代码:     jquery方式,访问iframe页面dom元素          function getIframeDom(){ // 获取iframe的test元素 var test = $("#frame_1").contents().find("#test"); alert(test.html())  }...
分类:Web程序   时间:2014-05-06 23:14:38    阅读次数:343
c/c++中#和##链接符号的用法
#include #include /* 英语原文: In function-like macros, a # operator before an identifier in the replacement-list runs the identifier through parameter replacement and encloses the r...
分类:编程语言   时间:2014-05-06 22:01:02    阅读次数:378
Verilog之case语句
verilog设计进阶 时间:2014年5月6日星期二   主要收获: 1.学会使用case语句; 2.学会使用随机函数$random。   $random: 1.函数说明:$random函数调用时返回一个32位的随机数,它是一个带符号的整形数。 2.产生0~59之间的随机数的例子: reg[23:0]rand; rand={$random}% 60; 3.产生一个在min...
分类:其他好文   时间:2014-05-06 21:39:28    阅读次数:353
js:深入继承
/**  * js实现继承:  * 1.基于原型链的方式  * 2.基于伪造的方式  * 3.基于组合的方式  */ 一、基于原型链的方式 function Parent(){   this.pv = "parent";  } Parent.prototype.showParentValue = function(){   console.log(this.pv);  }...
分类:Web程序   时间:2014-05-06 18:49:35    阅读次数:387
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!