码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
CMD 调用返回
<!--WizRtf2Html Charset=0 --> Public Function ExecuteCmd(cmdstr As String) Dim startInfo As New ProcessStartInfo("cmd.exe") With startInfo .Arguments  ...
分类:其他好文   时间:2016-04-30 22:09:17    阅读次数:313
XCode catalogue
naming function is a hard work! but it's funning,hahaha~~ actually,it's all my summit about the name of function . tell me your idea,please it's seper ...
分类:其他好文   时间:2016-04-30 14:11:07    阅读次数:106
数学算法那些事
数学算法那些事 1. 三种方法求最大公约数 1、连续整数检测法. 此算法比较简单: [php] view plain copy print? /** * greatest common divisor * * @param int $a * @param int $b */ function gcd ...
分类:编程语言   时间:2016-04-30 14:08:15    阅读次数:315
JavaScript 基础回顾——函数
在JavaScript中,函数也是一种数据类型,属于 function 类型,所以使用Function关键字标识函数名。函数可以在大括号内编写代码并且被调用,作为其他函数的参数或者对象的属性值。 1.命名函数的创建和使用 <script type="text/javascript"> functio ...
分类:编程语言   时间:2016-04-30 12:44:35    阅读次数:183
jQuery(1)
ajax 中get和post的区别1、get请求的数据大小限制小。追家在url中传送,能在浏览器中缓冲,能被看见,不安全。post以http消息的实体内容发送到web服务器,传送的数据量大。安全。 闭包:javascript语法区域中特殊区域。类似的方法闭包如 (function(){})();能访 ...
分类:Web程序   时间:2016-04-30 11:15:37    阅读次数:186
easyui
解决兼容性问题1、移除 $.fn._remove = function () { return this.each(function () { $(this).remove(); try { this.outerHTML = ""; } catch (err) {} } ); }; $.fn._ou ...
分类:其他好文   时间:2016-04-30 11:15:01    阅读次数:188
seajs
seajs模块化开发使用“define”函数定义一个模块require 引用模块 sea.js加载1、seajs.config 全局配置2、seajs.use 模块加载 require.async 异步加载模块模块define(function(require, exports, module) { ...
分类:Web程序   时间:2016-04-30 11:13:10    阅读次数:165
leetcode 100. Same Tree(递归)
Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical a ...
分类:其他好文   时间:2016-04-30 06:36:56    阅读次数:124
真的了解JS的面向对象吗?
js的几种数据类型:number, string, boolean, object, undefined五种数据类型 js的常见内置对象类:Date, Array, Math,Number,Boolean, String, RegExp,Function,Object。 js的两个类型判断方法:ty ...
分类:Web程序   时间:2016-04-30 01:00:06    阅读次数:306
Mysql封装
<?phpheader("content-type:text/html;charset=utf-8");class db{ //私有的静态属性 private static $dbcon = false ; //私有的构造方法 private function __construct($dbname ...
分类:数据库   时间:2016-04-29 23:38:51    阅读次数:334
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!