码迷,mamicode.com
首页 >  
搜索关键字:document    ( 20024个结果
JQuery操作表单相关使用总结
select下拉列表onChange事件之JQuery实现:Java代码JQuery:$(document).ready(function(){$("#selectMenu").bind("change",function(){if($(this).val()=="pro1"){$("#pro1")...
分类:Web程序   时间:2014-07-22 22:54:54    阅读次数:307
Networking in too much detail
The players This document describes the architecture that results from a particular OpenStack configuration, specifically:Quantum (or Neutron) networ....
分类:Web程序   时间:2014-07-22 22:54:36    阅读次数:352
今日一感:外行人看产品经理
市场需求文档:(英文全称Market Requirement Document,MRD) 产品需求文档(Product Requirement Document,PRD)的英文简称 Business Requirement Document;中文意思是:商业需求描述。 基于商业目标或价值所描述的产品需求内容文档(报告),其核心的用途就是用于产品在投入研发之前,由企业高层作为决策评估的重要依据。...
分类:其他好文   时间:2014-07-18 22:36:53    阅读次数:311
js事件冒泡
什么是JS事件冒泡?: 在一个对象上触发某类事件(比如单击onclick事件),如果此对象定义了此事件的处理程序,那么此事件就会调用这个处理程序,如果没有定义此事件处理程序或者事件返回true,那么这个事件会向这个对象的父级对象传播,从里到外,直至它被处理(父级对象所有同类事件都将被激活),或者它到达了对象层次的最顶层,即document对象(有些浏览器是window)。  如何来阻止Jq...
分类:Web程序   时间:2014-07-18 21:39:55    阅读次数:212
Ora-955 Error Running Utl_Recomp.Recomp_Serial (文档 ID 1274504.1)
Oracle Server - Enterprise Edition - Version 10.2.0.1 to 10.2.0.5 [Release 10.2] Information in this document applies to any platform.SymptomsThe utl_...
分类:其他好文   时间:2014-07-18 20:30:33    阅读次数:329
js方式清空表单数据的两种方式
方法1:遍历页面元素/*清空FORM表单内容 id:表单ID*/function ClearForm(id) { var objId = document.getElementById(id); if (objId == undefined) { return; } for (var ...
分类:Web程序   时间:2014-07-18 20:22:51    阅读次数:225
js 实现ReplaceAll 的方法
JS 字符串有replace() 方法。但这个方法只会对匹配到的第一个字串替换。 如下例: New Document 如果要全部替换的话,JS 没有提供replaceAll这样的方法。使用正则表可以达成Replace 的效果:str.replace(/word/g,"Excel")g的意义是:执行全...
分类:Web程序   时间:2014-07-18 20:17:21    阅读次数:205
原生计算浏览器高度
EventUtil.addHandler(window,'scroll',function(){ var dafid = document.getElementById('dafid'), eletop = dafid.getBoundingClientRect().top; if(eletop.....
分类:其他好文   时间:2014-07-18 20:15:23    阅读次数:213
jquery 回车事件
简单地记下jquery实现回车事件,代码如下: 全局: $(function(){document.onkeydown = function(e){ var ev = document.all ? window.event : e; if(ev.keyCode==13) { $('#FormId)....
分类:Web程序   时间:2014-07-18 19:11:05    阅读次数:311
javascript学习---------图像处理
Image对象的存储和获取web页面中所有的<img>元素存储在一个document.p_w_picpaths[]数组中通过document.p_w_picpaths[index]document.p_w_picpaths["name"]访问注意:name是<img>标签的属性name的值图片的预装载缓解图片装载缓慢的问题。原理:预装载实在HTTP请求..
分类:编程语言   时间:2014-07-17 08:04:45    阅读次数:356
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!