摘要: 最新版本的cordova添加Splash只需要改写config.xml官方文档地址为:http://cordova.apache.org/docs/en/4.0.0/config_ref_images.md.html#Icons%20and%20Splash%20Screens可是按照官方的说明在a... 阅读全文
posted @ 2015-01-21 11:57 libmw 阅读(622) 评论(0) 推荐(0) 编辑
摘要: fontello是一个非常好的web font生成工具,但是在使用过程中发现生成的字体在firefox下死活渲染不出来,只有chrome可以正常渲染,字体文件和页面在同域下。试过各种办法,最后发现一个规律,如果只选择空心符号和非空心符号,那么是可以正常渲染的。这就说明,是fontello生成的字体文... 阅读全文
posted @ 2014-08-28 16:04 libmw 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 看这段代码: content deffer.js的内容为:alert(1)这样在alert窗口没有被关闭之前,页面都会是一片空白。因为alert窗口阻止了页面的继续渲染。为了避免此类问题,html规范里定义了deffer和async属性,这两个属性的具体定义这里不讨论,反正他们都是用来... 阅读全文
posted @ 2014-06-23 09:44 libmw 阅读(968) 评论(0) 推荐(0) 编辑
摘要: 通常我们使用window.onerror来捕获js脚本的错误信息。 但是对于跨域调用的js脚本,onerror事件只会给出很少的报错信息:error: Script error. 这个简单的信息很明显不足以看出脚本的具体错误,所以我们可以使用crossorigin属性,使得加载的跨域脚本可以... 阅读全文
posted @ 2014-06-23 09:26 libmw 阅读(2885) 评论(0) 推荐(0) 编辑
摘要: This function is an alias forapache_request_headers(). Please read theapache_request_headers()documentation for more information on how this function ... 阅读全文
posted @ 2014-06-18 10:52 libmw 阅读(1096) 评论(0) 推荐(0) 编辑
摘要: sort方法用来对数组排序非常方便。但是sort(func)这个func参数的构造却很容易混淆。sort判断func的返回值是判断正负,而不是ture和false。所以务必保证返回值要么负数要么正数,而不是true和falsehttps://developer.mozilla.org/en-US/d... 阅读全文
posted @ 2014-06-03 11:33 libmw 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 1. the config arguments 'browse_button' should not be a single element like button etc. because in ie7 the 'button' element will lead to a unknown run... 阅读全文
posted @ 2014-05-28 10:43 libmw 阅读(188) 评论(0) 推荐(1) 编辑
摘要: DocumentRoot "D:\baiduyun\webroot\jedi\app\static" 这样是可以的DocumentRoot "D:\baiduyun\webroot\jedi\app\static\" 这样是不可以的 阅读全文
posted @ 2014-05-28 10:12 libmw 阅读(322) 评论(0) 推荐(0) 编辑
摘要: I have used jquery for many years, but didn't list the problem I ever meeting, so here is a list of the issues which I have meet in jQuery.1. The remo... 阅读全文
posted @ 2014-05-20 15:05 libmw 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 今天在编译别人的project时遇到了这个错误,心想应该不是代码的问题。网上搜了一下,应该是sdk版本设置的问题,要设置为最新sdk版本才可以。解决办法就是修改project.properties里的target=android-19http://stackoverflow.com/questions/20778767/unable-to-execute-dex-java-nio-bufferoverflowexception-check-the-eclipse-log-f 阅读全文
posted @ 2014-02-12 17:13 libmw 阅读(480) 评论(0) 推荐(0) 编辑