码迷,mamicode.com
首页 >  
搜索关键字:document    ( 20024个结果
JAXB - Hello World
We'll stick with the tradition and use a sort of "Hello World" XML document to illustrate the typical scenario for creating the Java classes and their ...
分类:其他好文   时间:2016-05-18 10:47:12    阅读次数:208
js bom中浏览器兼容问题判断代码
var btn = document.getElementById('d1');if(addEventListener undefined){ btn.attachEvent('onclick',function () { alert('版本小于IE8') })}else{ btn.addEvent ...
分类:Web程序   时间:2016-05-18 00:06:26    阅读次数:279
ASDM Installation and Troubleshooting
DotheconfigurationandTroubleshotingfollowingbythefollowingarticle:https://supportforums.cisco.com/document/57701/asdm-access-troubleshootingTheStepsare:1.downloadtheASDMfilefromtheciscowebsite:https://software.cisco.com/download/release.html?mdfid=279513399..
分类:其他好文   时间:2016-05-17 19:57:48    阅读次数:212
jquery获取显示器,屏幕的宽度,和高度
Javascript: 网页可见区域宽: document.body.clientWidth网页可见区域高: document.body.clientHeight网页可见区域宽: document.body.offsetWidth (包括边线的宽)网页可见区域高: document.body.off ...
分类:Web程序   时间:2016-05-17 19:10:25    阅读次数:185
JS 图片预览功能
<script type="text/javascript"> function DisplayImage(fileTag) { document.getElementById('viewfile').value = fileTag.value; fileTag.style.display = 'n ...
分类:Web程序   时间:2016-05-17 17:54:38    阅读次数:239
Javascript 类数组(Array-like)对象
Javascript中的类数组对象(Array-like object)指的是一些看起来像数组但又不是数组的对象。Javascript中的arguments变量、document.getElementsByTagName()返回值就是典型的类数组对象。 类数组特性 类数组对象具有一个length属性 ...
分类:编程语言   时间:2016-05-17 17:41:38    阅读次数:412
如何撰写PRD
PRD(Product-Requirement-Document,产品需求文档),这对于任何一个产品经理来说都不会陌生的一个文档,一个PRD是衡量一个产品经理整体思维的标准,一个PRD可以看出一个产品经理在某个领域的专业性,同时也可以反应出一个产品经理的整体产品思维。 产品经理的整体思维体现在: 1 ...
分类:其他好文   时间:2016-05-17 17:38:10    阅读次数:135
用jQuery实现拖动
今天我用jQuery实现了简单的物体拖放功能,已经设置的上下左右的临界点,可以更具自己的需要设置限制区域,我这里设置的是document对象的高度和宽度。 原理很简单就是: 1:获取当前物体的偏移量,以便于之后的计算 2:获取鼠标的当前位置坐标。 3:得到新的偏移量,保存下来 4:新的位置是用旧的坐 ...
分类:Web程序   时间:2016-05-17 17:31:02    阅读次数:160
jQuery基础——DOM篇
jQuery基础——DOM篇在javascript中如何创建节点? 创建节点(常见的:元素、属性和文本) 添加节点的一些属性 加入到文档中 流程中涉及的一点方法: 创建元素:document.createElement 设置属性:setAttribute 添加文本:innerHTML 加入文档:appendChild 例子: document.addEventListener('click',...
分类:Web程序   时间:2016-05-17 11:38:59    阅读次数:228
java操作常用Api
1.xml解析 需要导入dom4j-full.jar包 SAXreader sax = new SAXreader(); //创建SAXreader Document doc = sax.read("地址"或者new File("地址")); //读取一个xml文件 Element elEmp = ...
分类:编程语言   时间:2016-05-17 00:44:20    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!