Javascript
如何成为“10倍效率”的开发者
Posted by quentin 在 Wednesday, 4 January 2012如何成为“10倍效率”的开发者作为一名程序开发者,除了要求更好的代码质量以外,开发效率也是不可忽略的。从Brad Feld的一篇文章The Rise of Developeronomics中提到的“10倍效率开发者”的概念!下面文章将给出如何去提高这么诱人的开发效率的答案。 Brad Feld的一篇文章The Rise of Developeronomics中提到了“10倍效率的开发者(10x developer)”的概念(伟大的开发者的效率往往比一般的开发者高很多,而不只是一点点),Adam Loving在读了之后受到启发,并向多位大牛(Ben Sharpe、Collin Watson和Jonathan Locke)询问如何成为“10倍效率的开发者”,最后得到了以下的答案。
1、只做需要做的工作
◆ 使用敏捷方法;
◆ 全心全意做UX设计;
◆ 沟通第一;
◆ 编码也许不是解决问题的办法;
◆ 过早的优化是一切罪恶的根源;
◆ 选择最简单的解决方案。
有趣的JS特效,仅仅1KB大小
Posted by Carol Xu 在 Wednesday, 21 September 2011Javascript的encodeURIComponent()和decodeURIComponent()函数
Posted by quentin 在 Friday, 9 September 2011
Javascript下有自己的URLencode函数,并不要我们自己去实现。如下:
编码函数:encodeURIComponent()
解码函数:decodeURIComponent()
感觉还是挺方便的,跟PHP 的urlencode一样好用。
[转]jquery取得iframe元素的方法
Posted by quentin 在 Monday, 13 December 2010收集利用Jquery取得iframe中元素的几种方法 :
Js代码
- $(document.getElementById('iframeId').contentWindow.document.body).htm()
$(document.getElementById('iframeId').contentWindow.document.body).htm()
显示iframe中body元素的内容。
Js代码
- $("#testId", document.frames("iframename").document).html();
$("#testId", document.frames("iframename").document).html();
根据iframename取得其中ID为"testId"元素
[转]jquery取得iframe元素的方法
Posted by quentin 在 Monday, 13 December 2010收集利用Jquery取得iframe中元素的几种方法 :
Js代码
- $(document.getElementById('iframeId').contentWindow.document.body).htm()
$(document.getElementById('iframeId').contentWindow.document.body).htm()
显示iframe中body元素的内容。
Js代码
- $("#testId", document.frames("iframename").document).html();
$("#testId", document.frames("iframename").document).html();
根据iframename取得其中ID为"testId"元素
动态载入脚本和CSS
Posted by quentin 在 Monday, 12 October 2009一般来说,脚本和CSS都是在页面中用<script>和<link>来进行引入,也就是说,正如你现在所看到的这张网页一样,是静态的写在html中的。
判断浏览器是IE还是Firefox
Posted by quentin 在 Thursday, 14 May 2009判断浏览器是IE还是Firefox
<script>
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName==\'Netscape\')?1:0;
var isIE=(navigator.appName.indexOf(\'Microsoft\')!=-1)?1:0;
}
if (isNN)
alert(\'NETSCAPE [FF/OTHER]\');
if (isIE)
alert(\'IE\');
</script>
鼠标的几种形状
Posted by quentin 在 Thursday, 14 May 2009鼠标的几种形状
<INPUT TYPE=\"submit\" style=\"cursor: pointer\" value=\"hand\">
形状值如下:
auto :标准光标
default :标准箭头
pointer :手形光标
wait :等待光标
text :I形光标
vertical-text :水平I形光标
no-drop :不可拖动光标
not-allowed :无效光标
help :?帮助光标
all-scroll :三角方向标
move :移动标
crosshair :十字标
标准的获取DOM节点的JS代码
Posted by quentin 在 Thursday, 14 May 2009标准的获取DOM节点的JS代码