码迷,mamicode.com
首页 >  
搜索关键字:document    ( 20024个结果
Document
softwareengineeringdocumentWhywritingisimprotant?1、ToprovideareliablebasisnotonlyforusersbutforprogrammersThedocumentisequivalenttothelaw,ifthereanyerrorsafterprogramminghaddone,couldcheckitaccountforwhomBuildingasystemisveryeasy,butthelatermaintenancewo..
分类:其他好文   时间:2015-08-05 01:18:07    阅读次数:139
JavaScript中基础变量和数据类型的定义
无标题文档 var i=10; var j=10; var m=i+j; document.write(m);//output:20 var string="hello";//定义字符串类型 var i=10;//定义数字类型 var flag=true;//定义bool类型 var arr=[1,2,3,4];//定义int类型的数组 var arr...
分类:编程语言   时间:2015-08-05 01:03:47    阅读次数:166
tablesorter对于动态生成的table无法使用解决办法
需要对动态生成的table增加搜索功能,发现tablesorter正好满足需求,但动态生成table时,无法使用,发现一个笨办法, 在生成table之前,先写一个静态的,问题即可解决 $(document).ready(function(){ render_table(){}; $("#myTable").tablesorter({ "theme"...
分类:其他好文   时间:2015-08-04 23:06:15    阅读次数:944
两个html页面之间传递参数
var href = document.URL; href = decodeURI(href); var oText1 = href.split("=")[1]; eg:  a.html    local.href = 'www.aaa.com/index.php?a=1'; b.html var href = document.URL; href = decodeURI...
分类:Web程序   时间:2015-08-04 22:57:28    阅读次数:140
TF-IDF
TF-IDF(term frequency–inverse document frequency)是一种用于信息检索与数据挖掘的常用加权技术。TF-IDF是一种统计方法,用以评估一字词对于一个文件集或一个语料库中的其中一份文件的重要程度。字词的重要性随着它在文件中出现的次数成正比增加,但同时会随着它...
分类:其他好文   时间:2015-08-04 22:37:17    阅读次数:206
JavaScript 之 document对象
对象属性document.title //设置文档标题等价于HTML的title标签document.bgColor //设置页面背景色document.fgColor //设置前景色(文本颜色)document.linkColor //未点击过的链接颜色document.alinkColor //...
分类:编程语言   时间:2015-08-04 20:49:52    阅读次数:154
ExtJS的document使用
// document是最重要的window对象,有了document对象引用可以操作HTML页面中所有元素 Ext.onReady(function(){ // 创建div Ext.getBody().createChild({...
分类:Web程序   时间:2015-08-04 19:24:43    阅读次数:160
(转)$(function(){})和$(document).ready(function(){})
holysonll.blog.163.com/blog/static/2141390932013411112823855/document.ready和onload的区别——JavaScript文档加载完成事件页面加载完成有两种事件一是ready,表示文档结构已经加载完成(不包含图片等非文字媒体文件...
分类:其他好文   时间:2015-08-04 18:39:26    阅读次数:87
PHp $_SERVER参数详解
$_SERVER['PHP_SELF'] 当前执行脚本的文件名,与 document root 有关。例如,在地址为 http://example.com/test.php/foo.bar 的脚本中使用 $_SERVER['PHP_SELF'] 将得到 /test.php/foo.bar。__FIL...
分类:Web程序   时间:2015-08-04 15:21:55    阅读次数:125
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!