易截截图软件、单文件、免安装、纯绿色、仅160KB

Javascript 开发工具


Build your web applications quickly and easily using the industry leading web application IDE -- Aptana Studio.
Introduction:
Aptana Studio is a complete web development environment that combines powerful authoring tools for HTML, CSS, and JavaScript, along with thousands of additional plugins created by the community.
官方网站:http://www.aptana.org/
下载地址:Aptana Stuido
Firefox浏览器
在“快车道”中浏览:升级到史上最快、最安全和最聪明的Firefox火狐浏览器
Introduction:
世界著名的一款浏览器!
官方网站:http://www.mozillaonline.com/
下载地址:Firefox
扩展插件:https://addons.mozilla.org/zh-CN/firefox/
Firebug - Web Development evolved
Web Development evolved
Introduction:
Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.
官方网站:http://getfirebug.com/
下载地址:Firebug
技术文档:http://getfirebug.com/wiki/index.php/Main_Page
扩展插件:http://getfirebug.com/extensions/index.html
Yahoo! YSlow for Firebug
Grade your web pages with YSlow
Introduction:
YSlow analyzes web page performance by examining all the components on the page, including components dynamically created by using JavaScript. It measures the page's performance and offers suggestions for improving it.
YSlow is integrated into the Firebug web development tool for Firefox.
官方网站:http://developer.yahoo.com/yslow/
下载地址:YSlow
技术文档:http://developer.yahoo.com/yslow/help/index.html
Web Developer
If you're a developer, you'll want this, it makes switching on / off options in the browser and getting deeper easier!
Introduction:
Web Developer 插件以工具栏的形式对网页的(X)HTML、脚本、多媒体、CSS、缓存、图象等多方面的实用工具。使我们能轻易的获得网页的更多信息,使我们进一步的了解当前所浏览的网页。
官方网站:http://getfirebug.com/
下载地址:Web Developer
介绍文章:《Web Developer插件概要》


相关文档:

Javascript刷新页面大全

非模态刷新父页面:window.opener.location.reload();
模态刷新父页面:window.dialogArguments.location.reload();
 
先来看一个简单的例子:
   下面以三个页面分别命名为frame.html、top.html、bottom.html为例来具体说明如何做。
  
   frame.html 由上(top.html)下(bo ......

JavaScript验证函数大全

1. 长度限制
<script>
function test()
{
if(document.a.b.value.length>50)
{
alert("不能超过50个字符!");
document.a.b.focus();
return false;
}
}
</script>
<form name=a onsubmit="return test()">
<textarea name="b" cols="40" wrap="VIRTUAL" rows="6"></textarea& ......

JavaScript事件大全

click() 对象.click() 使对象被点击。
closed 对象.closed 对象窗口是否已关闭true/false
clearTimeout(对象) 清除已设置的setTimeout对象
clearInterval(对象) 清除已设置的setInterval对象
confirm("提示信息") 弹出确认框,确定返回true取消返回false
cursor:样式 更改鼠标样式 hand crosshair text wait help defa ......

javascript typeof的用法

javascript typeof的用法
经常会在js里用到数组,比如 多个名字相同的input, 若是动态生成的, 提交时就需要判断其是否是数组.
if(document.mylist.length != "undefined" ) {} 这个用法有误.
正确的是 if( typeof(document.mylist.length) != "undefined" ) {}
或 if( !isNaN(document.mylist.length) ) {}
typeof的运 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号