码迷,mamicode.com
首页 >  
搜索关键字:document    ( 20024个结果
windows下mongodb基础玩法系列二CURD操作(创建、更新、读取和删除)
windows下mongodb基础玩法系列windows下mongodb基础玩法系列一介绍与安装windows下mongodb基础玩法系列二CURD操作(创建、更新、读取和删除)简单说几句 在mongodb中3元素:db(数据库)、collection(集合)、document(文档)其中colle...
分类:数据库   时间:2014-10-17 23:14:02    阅读次数:300
JQuery学习笔记-JQuery中的事件
window.onlaod必须等网页中所有内容(包括图片)加载完毕才能执行,不能同时编写多个$(document).ready()网页中所有DOM结构绘制完毕后执行,可能DOM元素关联的东西并没有加载完毕,能同时编写多个,简写$()<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01//EN""http://www.w3.org/..
分类:Web程序   时间:2014-10-17 19:03:33    阅读次数:252
手机引导页
<html> <head> <scriptsrc="jquery-1.7.1.min.js"></script> <scripttype="text/javascript"> $(document).ready(function(){ vart1=setTimeout("$(‘#a‘).css(‘color‘,‘#0099FF‘);",2000) vart2=setTimeout("$(‘#b‘).css(‘color‘,‘#0099FF‘)",30..
分类:移动开发   时间:2014-10-17 18:59:36    阅读次数:171
remove xcode recent projects from dock menu 移除xcode dock菜单显示的项目列表
Launch XcodeSelect File->Open Recent->Clear MenuRight-click the Xcode icon and select Show All Windows. You should now see only your current document ...
分类:其他好文   时间:2014-10-17 18:20:25    阅读次数:189
dom 文档对象模型 有关的知识
本文非本人原创,只是感觉对自己有用特拿来学习,特此声明。document.createElement()是在对象中创建一个对象,要与appendChild() 或 insertBefore()方法联合使用。其中,appendChild() 方法在节点的子节点列表末添加新的子节点。insertBefo...
分类:其他好文   时间:2014-10-17 18:15:02    阅读次数:106
订单应用暂挂
You can apply hold on existing order by populating the order import interface with the following : OE_HEADERS_IFACE_ALL ORDER_SOURCE_ID ORIG_SYS_DOCUMENT_REF OPERATION_CODE => 'UPDATE' ORG_ID...
分类:其他好文   时间:2014-10-17 15:32:46    阅读次数:385
javascript获取iframe对象
//通过window对象获取子iframevar _frame = window.frames[1] ; //获取第二个iframe(根据name获取使用window.frames['xxx'])if( $.browser.msie ){ //ie_frame = window.document.f...
分类:编程语言   时间:2014-10-17 15:07:08    阅读次数:135
js获取框架(IFrame)的内容
varobjValue=window.parent.frames["down"].document.getElementById("456");alert(objValue.value);
分类:Web程序   时间:2014-10-17 15:00:28    阅读次数:229
函数,设为首页
function setHomepage(){ var url = window.location.href; if (document.all) { document.body.style.behavior='url(#default#homepage)'; document....
分类:其他好文   时间:2014-10-17 11:49:18    阅读次数:192
document.getElementById方法在Firefox与IE中的区别。
如下,有一name="txtVersion"的text控件: 根据上面信息,我们要用JS获得其控件中的值,我们这样写: var strVersion= document.getElementById("txtVersion").value; 上面的写法没错,在以IE为内核的浏览器中是正确的,但是.....
分类:其他好文   时间:2014-10-17 01:52:53    阅读次数:229
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!