码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
Linux 下 wordpress 无法安装插件
直接编辑 wp-config.php 文件就好了,在末尾处添加:if(is_admin()) {add_filter('filesystem_method', create_function('$a','return"direct";'));define('FS_CHMOD_DIR', 0751);...
分类:系统相关   时间:2015-06-11 22:45:07    阅读次数:233
最长上升子序列(nlog n)
呵呵program hehe;var n,i,j,k,l:longint; d,f,a:array[0..5000] of longint; function find(l,r:longint):longint; var mid:longint; begin if l=r then e...
分类:其他好文   时间:2015-06-11 22:39:16    阅读次数:106
将字符串或者数字转化成英文格式输出
var f = function(a){ var b = String(a); var len = b.length; var j = len % 3; var arr = []; if (len <= 3) {return b}; if (j==0) { ...
分类:其他好文   时间:2015-06-11 22:25:38    阅读次数:117
快速排序C++实现
//快速排序 #include #include #include using namespace std; void qksort(int* arr, int cnt) { function getPivot = [&](int* arr, int left, int right)->int { int mid = (left + right) / 2; if (arr[left...
分类:编程语言   时间:2015-06-11 21:18:10    阅读次数:143
select下拉菜单反显不可修改,且submit可以提交数据
首先通过后台funcA()将下拉菜单反显不可修改的数据response到disable.jsp页面,disable.jsp: var data1=${result.object.data1}; var data2=${result.object.data2}; var data3=${result.object.data3}; ......条件 function setDisab...
分类:其他好文   时间:2015-06-11 21:15:43    阅读次数:135
实现手机滑动翻页效果
var nStartX,nEndX,nDetalX;          function touchToNextPage(){              document.addEventListener('touchstart', function (e) {             //获得手指开始碰触屏幕时的x坐标            nStartX = e.touches...
分类:移动开发   时间:2015-06-11 19:34:11    阅读次数:169
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 and the nodes have the same value.思路:递归法判断 假设两棵树根结点为...
分类:其他好文   时间:2015-06-11 19:22:38    阅读次数:87
Javascript中的方法和匿名方法
Javascript方法(函数) 声明函数 以function开头,后跟函数名,与C#、java不同,Javascript不需要声明返回值类型、参数类型。没有返回值就是undefined。 举个栗子更清楚: 无参数无返回值的方法: function f1(){ alert(‘这是一个方法’); } ...
分类:编程语言   时间:2015-06-11 19:19:05    阅读次数:183
Ext学习
一.Ext对原有JavaScript对象的扩展1.Ext.Array数组2.Ext.Date日期3.Ext.Function函数4.Ext.Number数字5.Ext.String字符串二.JSON全称是JavaScript Object Notation(JavaScript 对象符号)。JSON...
分类:其他好文   时间:2015-06-11 19:05:10    阅读次数:103
下拉图标呼吸效果制作
下拉图标呼吸效果在手机网站中用的比较多,可以很形象的提示用户往下有更多内容。下面是几行简单的代码~//下拉图标呼吸效果var setTime;function setTimeFun() { $(".mdmobile-first-bottom-bottom").animate({ ...
分类:其他好文   时间:2015-06-11 19:03:52    阅读次数:143
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!