码迷,mamicode.com
首页 >  
搜索关键字:index    ( 33545个结果
Jquery 对select的操作
jquery对select下拉框的操作总结。。。1、通过索引值去设置select中的option的value和textvarindex=1;varval="该改为的值";$("#selectIdoption:eq("+index+")").attr("selected",true);$("#selectIdoption:selected").val(val);$("#selectIdoption:selected").text(val);
分类:Web程序   时间:2014-05-15 19:00:51    阅读次数:314
检索document(retrieving a document)
为了在ES中把document检索出来,我们使用_index,type,_id,但是请求的动作变为了GET:GET /website/blog/123?pretty响应的数据包括了我们已经熟悉的元素,另外还有使用JSON格式组织的document的_source字段,这个字段是我们存储的数据。{ "...
分类:其他好文   时间:2014-05-15 17:32:58    阅读次数:329
js之获取url中"?"后面的字串
url : index.php?id=123
分类:Web程序   时间:2014-05-15 11:45:16    阅读次数:298
git出现error: bad signature fatal: index file corrupt
git出现error: bad signature fatal: index file corruptgit的index被损坏解决方法:需要重新生成index文件,rm -f .git/indexgit reset --mixed HEAD
分类:其他好文   时间:2014-05-15 11:41:50    阅读次数:2932
UVa 11729 - Commando War 题解
安排任务的问题。 思路: 因为分报告时间和实际执行任务时间,这里要做的就是尽量使得报告时间和实际执行任务的时间重合,并行,那么就可以减小总时间。 原题:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2829 0.012s的算法,达到网站最高纪录。 ...
分类:其他好文   时间:2014-05-15 04:23:35    阅读次数:269
document的元数据(document metadata)
一个document并不是简单的包含他的普通数据。同时也包括元数据——关于这个document的信息。有三个元数据是必须的,如下:_index document存储的地方_type document表述的类(class)_id document的唯一标识符_indexindex就像是关系型数据库的d...
分类:其他好文   时间:2014-05-15 01:51:08    阅读次数:270
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
MySQL索引篇
innodb索引概念总结记录下innodb的索引概念,以备查看innodb索引分类:聚簇索引(clustered index) 1) 有主键时,根据主键创建聚簇索引 2) 没有主键时,会用一个唯一且不为空的索引列做为主键,成为此表的聚簇索引 3) 如果以上两个都不满足那innodb自己创建一个...
分类:数据库   时间:2014-05-14 18:14:41    阅读次数:402
JAVA API集
1.JavaEE5API(含JSFAPI)http://java.sun.com/javaee/5/docs/api/2.HibernateAPIDocumentation(3.2.2.ga)http://www.hibernate.org/hib_docs/v3/api/3.SpringFrameworkAPI2.5http://static.springframework.org/spring/docs/2.5.x/api/index.html4.1Struts1.3.8APIhttp://struts..
分类:编程语言   时间:2014-05-14 16:51:34    阅读次数:407
分析osip的解析报文
staticint_osip_message_parse(osip_message_t*sip,constchar*buf,size_tlength,intsipfrag){inti;constchar*next_header_index;char*tmp;char*beg;tmp=osip_malloc(length+2);if(tmp==NULL){OSIP_TRACE(osip_trace(__FILE__,__LINE__,OSIP_ERROR,NULL,"Couldnotallocatememory..
分类:其他好文   时间:2014-05-14 16:06:25    阅读次数:296
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!