码迷,mamicode.com
首页 >  
搜索关键字:type    ( 51964个结果
AJAX 页面数据传递
$.ajax({ //一个Ajax过程 type: "post", //以post方式与后台沟通 url : "personstockajax.php", //与此php页面沟通 ...
分类:Web程序   时间:2015-11-20 12:04:28    阅读次数:115
html tag attribute集参考
Attribute NameElementsDescriptionaccept, List of types the server accepts, typically a file type.accept-charsetList of supported charsets.accesskeyGlo...
分类:Web程序   时间:2015-11-20 01:47:57    阅读次数:225
jstl异常
HTTP Status 500 -type Exception reportmessagedescription The server encountered an internal error () that prevented it from fulfilling this request.ex...
分类:Web程序   时间:2015-11-20 00:09:39    阅读次数:261
avascript小技巧
avascript小技巧事件源对象event.srcElement.tagNameevent.srcElement.type捕获释放event.srcElement.setCapture();event.srcElement.releaseCapture();事件按键event.keyCodeeve...
分类:其他好文   时间:2015-11-19 22:38:38    阅读次数:209
leetcode Longest Common Prefix python
class Solution(object): def longestCommonPrefix(self, strs): """ :type strs: List[str] :rtype: str """ if len(st...
分类:编程语言   时间:2015-11-19 20:55:53    阅读次数:249
Type Script在Visual Studio 2013中的问题汇总(持续更新…)
◆ TypeScript在vs2012下的问题TypeScript对VS2012支持度比较低,建议升级为VS2013版本。◆ 在VS2013中无法创建TypeScript项目VS2013默认不支持TypeScript。需要在【工具】-【扩展和更新】中安装TypeScript,目前为止(2015年9月...
分类:其他好文   时间:2015-11-19 20:38:50    阅读次数:221
linux下查找字符串的命令
1. set命令可以显示出当前shell下所有全局参量定义及其值;2. 查找并删除当前目录下小文件:find . -type f -size -10k -exec rm {} \;说明: www.2cto.com -type f 查找文件-size -10k,小于10k的。"+"是表示要求系统只列出...
分类:系统相关   时间:2015-11-19 20:38:01    阅读次数:194
获取单个checkbox选中项
1、获取单个checkbox选中项(三种写法)$("input:checkbox:checked").val()或者$("input:[type='checkbox']:checked").val();或者$("input:[name='ck']:checked").val();2、获取多个che....
分类:其他好文   时间:2015-11-19 20:33:42    阅读次数:162
orcal时间差
/*order_time在数据库中显示的是vchar类型,这里把它转换成了data类型*/select t1.order_source_type_id ,sum(average)/count(order_sn),count(order_sn) from ( select t1.order_sn,t1...
分类:其他好文   时间:2015-11-19 19:04:02    阅读次数:123
Objective-C Runtime 运行时之二:成员变量与属性
本章的主要内容将聚集在Runtime对成员变量与属性的处理。在讨论之前,我们先介绍一个重要的概念:类型编码。类型编码(Type Encoding)作为对Runtime的补充,编译器将每个方法的返回值和参数类型编码为一个字符串,并将其与方法的selector关联在一起。这种编码方案在其它情况下也是非常...
分类:其他好文   时间:2015-11-19 18:46:13    阅读次数:193
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!