码迷,mamicode.com
首页 >  
搜索关键字:document    ( 20024个结果
显示滚动条后,table 表头与内容不对齐,JS脚本控制
/*设置高度、滚动条*/ //其他DIV 高度 var tbheight = document.getElementById("div_top").scrollHeight + document.getElementById("div_tools_bar...
分类:Web程序   时间:2014-05-16 06:36:06    阅读次数:383
javascript中函数调用,函数实例化,函数三者关系
test // alert(jQuery()); function print(string){ document.write(string+""); }; document.write("********无返回值的情况***************"); (function(){ var jq = (function(){ var jq = fun...
分类:编程语言   时间:2014-05-15 11:14:55    阅读次数:373
Web Js判断键盘出发事件
window.document.onkeydown = disableRefresh; function disableRefresh(evt){ evt = (evt) ? evt : window.event if (evt.keyCode) {    if(evt.keyCode == 116){      //do something    } } } keycode 8...
分类:Web程序   时间:2014-05-15 06:08:18    阅读次数:315
cookie知识点简点
cookie几大作用: 1.保持用户登陆状态 2.跟踪用户行为 3.制定页面 4.创建购物车 cookie缺点: 1. 可能被禁用 2.可能被删除:cookie是一个文件,容易被用户删除 3.安全性不高 4.cookie可能与浏览器相关 设置cookie document.cookie = "userId = 100"; alert(document.cookie); 设置多个值: document.cookie ="userId = 100;userPa...
分类:其他好文   时间:2014-05-15 05:12:33    阅读次数:287
window onload 与 img onload事件
window onload 与 img onload事件 通常,window.onload就是加载完dom之后执行的。而img就是加载完图片完执行它的onload事件,根据img的src是否加载完成。 因此,看下面代码: img onload事件绑定(错误用法) window.onload = function(){ var img = document.g...
分类:Windows程序   时间:2014-05-15 04:44:34    阅读次数:410
source insight实用技巧
1 sourceinsight screen font 的默认字体是Verdana的,它是一直变宽字体。在Document style中可以将字体改为定宽的Courier 2   document options->auto indent 去掉indent Open Brace和Indent Close Brace的效果: 继上一段,在相对缩进行里, 如果输入"{"或"}", 则自动和上一行...
分类:其他好文   时间:2014-05-15 04:33:36    阅读次数:330
asp.net设置默认打开页面,Web.config,defaultDocument
The web.config file can be used to set a default document, or list of default documents for your website. Web.config can be used to change the defau.....
分类:Web程序   时间:2014-05-15 02:21:15    阅读次数:448
document是什么(what is a document)
大部分的应用中的大部分的实体类型对象都可以使用key-value被序列化到JSON中。key就是field的name或这property,value是string,number,boolean,另外的对象,数组,或者其他的类型如用string表示的date类型,或者表示地理位置信息的对象。{ "n....
分类:其他好文   时间:2014-05-14 23:02:34    阅读次数:390
调用新浪微博接口,实现“分享”功能——代码实现
Document 点击下面的按钮可以将这段文字和图片分享到新浪微博哦!@独行冰海
分类:其他好文   时间:2014-05-14 22:58:48    阅读次数:337
Html5新特性 <canvas>画板画直线
下面例子为用canvas标签画多条直线 index_three 您的浏览器不支持canvas标签。 //获取Canvas对象(画布) var canvas = document.getElementById("myCanvas"); //简单地检测当前浏览器是否支持Canvas对象,以免在一些不支持html5的浏览器中提示语法错误 if(canvas.get...
分类:Web程序   时间:2014-05-14 19:32:40    阅读次数:329
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!