setDocument = Sizzle.setDocument = function( node ) {
var hasCompare,
//node为Element时返回node所属document
//node为Document时返回node
//node为空时返回window.document
doc = node ? node.ownerDocument || node...
分类:
Web程序 时间:
2014-05-11 22:41:15
阅读次数:
459
html文件:
................
js文件:
$(document).ready(function()
{
$("#personsub").live('click',function()
{
if($("#oldpassword").val()=="")
{
a...
分类:
Web程序 时间:
2014-05-11 22:12:29
阅读次数:
347
Option Explicit
Function stripHTML(strtext)
dim arysplit,i,j, strOutput
arysplit=split(strtext,"
if len(arysplit(0))>0 then j=1 else j=0
for i=j to ubound(arysplit)
if instr(arysplit(i),">") ...
分类:
其他好文 时间:
2014-05-11 21:56:06
阅读次数:
355
测试环境:VMware Workstation v9.0.2软件中安装好Oracle Enterprise Linux 5.8 64-bit虚拟机安装软件:jdk-7u40-linux-x64.rpm+apache-tomcat-7.0.53.tar.gz安装说明:从官网下载jdk-7u40-linux-x64.rpm和apache-tomcat-7.0.53.tar.gz到Linux虚拟机中的/...
分类:
数据库 时间:
2014-05-11 21:54:03
阅读次数:
326
右键弹出自定义菜单,很有意思呀!
右键菜单
function showmenuie5(){
var rightedge=document.body.clientWidth-event.clientX
var bottomedge=document.body.clientHeight-event.clientY
if (rightedge
ie5menu.style.left=d...
分类:
其他好文 时间:
2014-05-11 20:20:35
阅读次数:
240
$(document).ready(function () { var
tag=$(".tags"); tag.mouseover(function(){
$(this).addClass("tagOn").siblings().removeClass("tagOn"); var index ...
分类:
Web程序 时间:
2014-05-11 18:22:45
阅读次数:
415
http://blog.163.com/drachen@126/blog/static/162607494201271435333906/查看os系统块的大小[root]#
/sbin/tune2fs -l /dev/sda1查看os系统页的大小[oracle@skate-test ~]$ getc...
分类:
系统相关 时间:
2014-05-11 18:21:18
阅读次数:
567
function getElementsByClassName(str,root,tag){
if(root){ root = typeof root == "string" ? document.getElementById(root) : root;
} els...
分类:
编程语言 时间:
2014-05-11 18:20:00
阅读次数:
316
C++语言的对象化模型.封装,隐藏内部实现.继承,复用现有代码.多态,改写对象行为本文描述了一个C++实现的继承和多态的场景,然后用C语言编写了一种对等的实现。//
A typical example of inheritance and virtual function use.// We wou...
分类:
编程语言 时间:
2014-05-11 18:03:47
阅读次数:
412
作为一个新手,学习Oracle,就连安装oracle都感觉到吃力!经过不间断的搜罗、学习、尝试,找到一些比较有用的“指导”,罗列如下:1.http://www.2cto.com/database/201208/150620.html2.http://wenku.baidu.com/link?url=...
分类:
数据库 时间:
2014-05-11 17:29:44
阅读次数:
320