码迷,mamicode.com
首页 >  
搜索关键字:document    ( 20024个结果
Oracle Product Hub / Product Lifecycle Management / Product Information Management / Advanced Produc
In this Document   Goal   Solution   1. Master List showing sample code for APIs in Product Data Hub   2. FAQ   a. Need API to load ...
分类:数据库   时间:2014-10-29 21:47:05    阅读次数:376
After Upgrade To Release 12.1.3 Users Receive "Function Not Available To This Responsibility" Error While Selecting Sub Menus Under Diagnostics (Doc ID 1200743.1)
APPLIES TO: Oracle Application Object Library - Version 12.1.3 to 12.1.3 [Release 12.1] Information in this document applies to any platform. Checked ...
分类:其他好文   时间:2014-10-29 21:23:53    阅读次数:456
SharePoint服务器端对象模型 之 对象模型概述(Part 2)
(三)Url 作为一个B/S体系,在SharePoint的属性、方法参数和返回值中,大量的涉及到了Url,总的来说,涉及到的Url可以分为如下四类: 绝对路径:完整的Url,包含了协议头(http或https)、端口号、主机名等等,例如:http://myserver/subweb/document...
分类:其他好文   时间:2014-10-29 21:13:48    阅读次数:202
javascript-DOM学习
javascript-DOM学习   DOM document(html) object modle   document对象(DOM核心对象)   dom能用来干什么?   对html元素的样式(颜色、大小、位置等等)、内容、属   性来进行动态的改变和操作。   document对象   ? 一、属性   ? title 返回...
分类:编程语言   时间:2014-10-29 17:10:06    阅读次数:178
SQL命名规范
1. 表中的字段一般使用名词性质的单词全拼表示,采用一个或三个以下英文单词组成,单词首字母大写,如:UserName;2. 表主键名称为:表名+ID,如Document表的主键名为:DocumentID3. 外键名称位:主表名+对应列名,如:DepartmentsID,说明如下: 在表Departm...
分类:数据库   时间:2014-10-29 16:50:53    阅读次数:292
a标签中href="#xxx"跳到id="xxx"
HTML中a标签中href="#xxx",当点击后,页面会跳转到标签中id="xxx"的地方。同时,在URL上的后面会看到加上了#xxx,这样直接改变URL中#后面的值,然后页面就可以跳转到标签中id为这个值的地方。测试代码: Document tab1 tab2 t...
分类:Web程序   时间:2014-10-29 16:38:08    阅读次数:169
js合并table单元格(拼table的时候并不知道具体几行几列)
Sys.Application.add_load(function () { var tab = document.getElementById("ctl00_ContentPlaceHolder1_viewcontrolTT_Repeater1_ctl00_viewcontrolTT_grid"); //要合并的tableID if (!tab) { alert...
分类:Web程序   时间:2014-10-29 14:52:56    阅读次数:252
jquery 回车事件
简单地记下jquery实现回车事件,代码如下:全局:$(function(){document.onkeydown = function(e){ var ev = document.all ? window.event : e; if(ev.keyCode==13) { $('#FormId).su...
分类:Web程序   时间:2014-10-29 14:37:00    阅读次数:180
Forever.Sun 从URL地址获取参数
-----------------------------js版本---------------------------------------function Request(para) { para = para.toLowerCase(); var url = document.U...
分类:Web程序   时间:2014-10-29 14:32:11    阅读次数:224
【通用】判断浏览器类型和版本
1、判断浏览器是否为IE document.all ? 'IE' : 'others':在IE下document.all值为1,而其他浏览器下的值为0; navigator.userAgent.indexOf("MSIE")>0 ? 'IE' : 'others':navigator.userA.....
分类:其他好文   时间:2014-10-29 12:45:57    阅读次数:356
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!