This is a preliminary document for an API or
technology in development. Apple is supplying this information to help you plan
for the adoption of the t...
分类:
移动开发 时间:
2014-06-13 14:05:54
阅读次数:
462
项目中正好用到
做下笔记方便以后查找ie获取光标的位置使用document.selection.createRange()火狐下使用document.getElementById(id).selectionStart
和document.getElementById(id).selectionEnd...
分类:
编程语言 时间:
2014-06-11 21:49:24
阅读次数:
291
document.selection只有IE支持window.getSelection()也只有FireFox和Safari支持,都不是标准语法。
selection 对象代表了当前激活选中区,即高亮文本块,或文档中用户可执行某些操作的其它元素。selection 对象的典型用途是作为用户的输入,....
分类:
其他好文 时间:
2014-06-11 12:21:51
阅读次数:
284
A FORM textbox with maxlength reset
submit表单的elements属性// 获取表单元素var form = document.getElementById("form");//...
分类:
编程语言 时间:
2014-06-11 09:36:16
阅读次数:
325
文档集是 SharePoint Server 2010
中的一项新功能,它使组织能够管理单个可交付文档或工作产品(可包含多个文档或文件)。文档集是特殊类型的文件夹,它合并了唯一的文档集属性以及文件夹和文档的属性和行为,并提供用户界面
(UI)、元数据和对象模型元素以帮助管理工作产品的各个方面。比如广...
分类:
其他好文 时间:
2014-06-11 08:48:05
阅读次数:
238
首先导入jar包:dom4j-1.6.1.jar一、DOM4j中,获得Document对象的方式有三种:1.读取XML文件,获得document对象
SAXReader parser = new SAXReader(); //获取解析...
分类:
其他好文 时间:
2014-06-11 08:30:56
阅读次数:
203
//js端function
println(string){ document.write(string+""); }//html端
分类:
其他好文 时间:
2014-06-10 00:10:30
阅读次数:
196
后缀MIME
類型.docxapplication/vnd.openxmlformats-officedocument.wordprocessingml.document.docmapplication/vnd.ms-word.document.macroEnabled.12.dotxapplica...
分类:
其他好文 时间:
2014-06-08 07:13:38
阅读次数:
269
今天写代码遇到这样一个问题,先上代码 1 2 function textout(obj){ 3
if(opac==60){opac=0;return;}; 4 opac+=10; 5 if(document.all){ 6
obj.style.filter=...
分类:
Web程序 时间:
2014-06-08 06:23:46
阅读次数:
277
做手机Web开发做浏览器兼容用到了,所以在网上找了些汇总下。alert($(window).height()); //浏览器当前窗口可视区域高度
alert($(document).height()); //浏览器当前窗口文档的高度 alert($(document.body).height());...
分类:
Web程序 时间:
2014-06-07 20:10:32
阅读次数:
312