} //用于改变密码修改 public function changPsw($username,$oldpassword,$newpassword){ if($oldpassword $newpassword){ echo "<h6>修改后的密码与原来的密码一致,无效!</h6>"; } if(!$ ...
分类:
其他好文 时间:
2016-03-30 08:12:34
阅读次数:
197
1、打开.bash_profile文件添加一个函数 #add a function for switch idk version.function jdkset() { if [ $# -ne 0 ]; then removeFromPath '/System/Library/Frameworks/ ...
分类:
系统相关 时间:
2016-03-30 06:52:21
阅读次数:
411
一、document.getElementById('emoji').addEventListener('click', function(e) { var emojiwrapper = document.getElementById('emojiWrapper'); emojiwrapper.st ...
分类:
Web程序 时间:
2016-03-30 01:25:39
阅读次数:
179
var region = new Object();region.isAdmin = false;region.loadRegions = function(b, a, c) { Ajax.call(region.getFileName(), "type=" + a + "&target=" + c ...
分类:
Web程序 时间:
2016-03-30 00:11:06
阅读次数:
368
<?php //魔术方法 //当包含多个类 //1.自动装载类的魔术方法__autoload() function __autoload($classname){ if (isset($classname)){ require_once $classname.'.class.php'; } } /* ...
分类:
Web程序 时间:
2016-03-29 21:17:19
阅读次数:
158
<?php namespace Home\Controller;use Think\Controller;class MsgController extends Controller{ public function AddMsg(){ } public function EditMsg(){ } ...
分类:
其他好文 时间:
2016-03-29 16:35:54
阅读次数:
172
Numbers can be regarded as product of its factors. For example, Write a function that takes an integer n and return all possible combinations of its f ...
分类:
其他好文 时间:
2016-03-29 14:52:42
阅读次数:
169
create or replace function real_st_astext( geom in clob ) return clob is geometry clob; tempGeom clob; begin geometry := upper(geom); if geom like '(( ...
分类:
数据库 时间:
2016-03-29 14:51:45
阅读次数:
948
Jquery插件之ajaxForm 如今ajax满天飞,作为重点的form自然也受到照顾。 其实,我们在平常使用Jquery异步提交表单,一般是在submit()中,使用$.ajax进行。比如: $(function(){ $('#myForm').submit(function(){ $.ajax ...
分类:
Web程序 时间:
2016-03-29 14:36:35
阅读次数:
227
arr为删除前的数组,key为要删除的元素对象。//删除数组中某元素,返回含有剩余元素的数组 function arrMove(arr, key){ var temp = []; for (var i=0; i<arr.length; i++) { if (arr[i] != key) { temp ...
分类:
编程语言 时间:
2016-03-29 14:35:45
阅读次数:
251