'; } 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
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
$(function(){ // 判断整数value是否等于0 jQuery.validator.addMethod("isIntEqZero", function(value, element) { value=parseInt(value); ...
分类:
Web程序 时间:
2014-08-11 11:36:32
阅读次数:
380
先来看一段代码: 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的每种动画过渡效果都是通过easing函数实现的。jQuery1.4.2中就预置了两个这样的函数:easing: {linear: function( p, n,...
分类:
Web程序 时间:
2014-08-11 09:52:21
阅读次数:
182
其实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 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
--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