码迷,mamicode.com
首页 > Web开发
JS实现 键盘操作
JS实现 键盘操作:详情可以去其逛网查看其API并下载,地址:http://craig.is/killing/mice http://www.cnblogs.com/lhmlyx2723356/p/4243237.html
分类:Web程序   时间:2015-02-06 13:07:19    阅读次数:198
html5(七) Web存储
http://www.cnblogs.com/stoneniqiu/p/4206796.htmlhttp://www.cnblogs.com/v10258/p/3700486.htmlhtml5中的Web Storage包括两种存储方式: sessionStorage: 这个存储机制只在页面会...
分类:Web程序   时间:2015-02-06 13:08:04    阅读次数:185
大熊君学习html5系列之------requestAnimationFrame(实现动画的另一种方案)
一,开篇分析Hi,大家好!大熊君又和大家见面了,(*^__^*) 嘻嘻……,这系列文章主要是学习Html5相关的知识点,以学习API知识点为入口,由浅入深的引入实例,让大家一步一步的体会"h5"能够做什么,以及在实际项目中如何去合理的运用达到使用自如,完美驾驭O(∩_∩)O~,好了,废话不多说,直接...
分类:Web程序   时间:2015-02-06 13:07:31    阅读次数:235
一次性设置网页中所有链接均在新窗口中打开的代码
一 让整个网页页面内的链接都在新窗口打开:在head中加入 二 让一个DIV里所有链接在新窗口打开: 在body中加入 复制代码 代码如下: 加入了是否特别要当前窗口打开的 复制代码 代码如下: //控制超链接在新窗口打开 var tar=""; tar="_blank"; var ...
分类:Web程序   时间:2015-02-06 13:04:52    阅读次数:223
php 中文切割字符串长度
function msubstr($str, $start=0, $length, $charset="utf-8", $suffix=true) { if(function_exists("mb_substr")) { if($suffix) { if($str==mb_subst...
分类:Web程序   时间:2015-02-06 13:06:04    阅读次数:135
PHP base62编码解码实现
1 <?php 2 /** 3 * @desc base62编码解码实现 4 * @param String $data 5 * @author Space 6 * @date 2014/8/6 7 **/ 8 9 function base62_encode($data...
分类:Web程序   时间:2015-02-06 13:05:36    阅读次数:471
HttpWebRequest 抓取页面异常处理办法
抓取页面异常处理办法 public static string GetHtmlTest(string URI) { string fullhtml = null; while (true) { ...
分类:Web程序   时间:2015-02-06 13:04:58    阅读次数:189
[整理]ASP.NET MVC 5 学习
MVC4一直使用,从未深入,1.入门1.1官方资料http://www.asp.net/mvc/overview/getting-started/introduction/getting-started疑问:startup.cs 是做什么的?http://blog.darkthread.net/po...
分类:Web程序   时间:2015-02-06 13:02:34    阅读次数:159
37. CentOS-6.3安装配置Weblogic-10
个人随手摘要(转载他人)
分类:Web程序   时间:2015-02-06 13:03:06    阅读次数:290
EXTJS 4.2 资料 控件之Grid 列鼠标悬停提示
columns: [ { header: '序号', xtype: 'rownumberer', align: 'left', width: 50 }, { header: '货位编号', dataIndex: 'Sto...
分类:Web程序   时间:2015-02-06 13:00:43    阅读次数:201
将ntfs分区转换为ext4分区
转自http://blog.csdn.net/nianhongmin/article/details/27818195 将ntfs分区转换为ext4分区 分类: Linux 2014-05-31 15:04 584人阅读 评论(0) 收藏 举报 好久没写技术博客了,也还是因为懒吧。不过从今天起恢.....
分类:Web程序   时间:2015-02-06 13:00:03    阅读次数:192
jquery $(this)和this
jQuery中this与$(this)的区别$("#textbox").hover( function(){ this.title="Test"; }, fucntion(){ this.title="OK”; } );这里的this其实是一个Html 元素(textbox),textbox有tex...
分类:Web程序   时间:2015-02-06 12:56:57    阅读次数:133
js string操作总结
var str='abcdefghijkl';console.log(str.charAt(2)) //根据字符串索引值找对应的字符串 cconsole.log(str.indexOf('b')) //根据字符串从前往后找对应的索引值 1 ,还有个可选参数(索引值),表示从第几位开始找 con...
分类:Web程序   时间:2015-02-06 12:57:15    阅读次数:185
php与js中函数参数的默认值设置
php函数参数默认值设置:";}test(11);test();?>javascript函数参数默认值设置function test(){alert("test函数");}function test2(val,func){ val=val||"";//利用js中的或操作,第一个参数值为false.....
分类:Web程序   时间:2015-02-06 12:56:38    阅读次数:129
linux下使用cronjob定时执行php脚本
linux下使用cronjob定时执行php脚本
分类:Web程序   时间:2015-02-06 12:56:02    阅读次数:140
Weblogic缓存
缓存:如果脱离IDE工具的话,weblogic的文件会在\user_projects\domains\base_domain\servers\AdminServer\tmp\_WL_user文件夹中http://www.cnblogs.com/alfredxiao/archive/2010/07/1...
分类:Web程序   时间:2015-02-06 12:55:53    阅读次数:145
34. CentOS-6.3安装配置Apache2.2.6
个人随手摘要(转载他人)
分类:Web程序   时间:2015-02-06 12:55:13    阅读次数:152
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!