码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
PHP 生成Word文档
'; } function save($path) { echo ""; $data = ob_get_contents(); ob_end_clean(); $this->wirtefile($path, $data); } function wirtefile($...
分类:Web程序   时间:2014-08-11 11:54:22    阅读次数:199
jquery 数组求差集,并集
var alpha = [1, 2, 3, 4, 5, 6], beta = [4, 5, 6, 7, 8, 9];$.arrayIntersect = function(a, b){ return $.merge($.grep(a, function(i) { ...
分类:Web程序   时间:2014-08-11 11:42:42    阅读次数:2321
封装自定义验证方法-validate-methods.js
$(function(){ // 判断整数value是否等于0 jQuery.validator.addMethod("isIntEqZero", function(value, element) { value=parseInt(value); ...
分类:Web程序   时间:2014-08-11 11:36:32    阅读次数:380
关于Javascript的“变量提升”
先来看一段代码: var?a?=?1;?? function?b()?{?? ????a?=?10;?? ????return;?? ????function?a()?{}?? }?? b();?? alert(a);?//?the?result?is?:?1 如果你觉得结果是“...
分类:编程语言   时间:2014-08-11 10:24:31    阅读次数:230
设置弹出框水平、垂直居中
自制一个友好的弹出框,当点击页面某个对象时,弹出提示框,一下是设置弹出框水平和垂直居中的代码: 1 function setElementCoordinate(obj) { 2 var d_width = document.documentElement.clientWidth;//计算当前...
分类:其他好文   时间:2014-08-11 10:05:01    阅读次数:166
友好地弹出对话框
1 function showMessage(msg, bgColor, borderColor) { 2 if ($("#showDiv").length 关闭");25 div.appendChild(p);26 window.document.body...
分类:其他好文   时间:2014-08-11 09:55:41    阅读次数:273
学习记录jQuery的animate函数
很久之前就对jQuery animate的实现非常感兴趣,不过前段时间很忙,直到前几天端午假期才有时间去研究。jQuery.animate的每种动画过渡效果都是通过easing函数实现的。jQuery1.4.2中就预置了两个这样的函数:easing: {linear: function( p, n,...
分类:Web程序   时间:2014-08-11 09:52:21    阅读次数:182
STL vector中的crbegin方法(7)
其实crbegin就相当于cbegin+rbegin. 关于这两个函数可以看我的上两篇博文。 public member function std::vector::crbegin const_reverse_iterator crbegin() const noexcept; Return const_reverse_iterator to ...
分类:其他好文   时间:2014-08-11 08:27:33    阅读次数:262
PHP严重致命错误处理:php Fatal error: Cannot redeclare clas
PHP严重致命错误处理:php ?Fatal error: Cannot redeclare class or function 1、错误类型:PHP致命错误 Error type: PHP Fatal error Fatal error: Cannot redeclare (a) (previously declared in (b)) in (c) ...
分类:Web程序   时间:2014-08-11 03:11:11    阅读次数:375
再说“使用CI操作oracle 10g的单表增删改查”
--Control中的UseOra.php ? ? <?php if (!defined(‘BASEPATH‘)) ??? exit(‘No direct script access allowed‘); class UseOra extends CI_Controller { ??? public function index() ??? { ?????...
分类:数据库   时间:2014-08-11 03:11:01    阅读次数:378
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!