Flash和Ajax开发的工具类库 SWFAddress
- 授权协议: MIT
- 开发语言: JavaScript ActionScript
- 操作系统: 跨平台
- 软件首页: http://www.asual.com/swfaddress/
- 软件文档: http://www.asual.com/swfaddress/docs/en/
软件介绍
SWFAddress是一个短小精悍的类库,它是一个Flash和Ajax开发的工具类库,他提供兼容多平台、多浏览器下的location.hash(即URL部分的#之后的处理)的解决方案,并解决浏览器的History的兼容性问题(IE6、IE7)等(官方的介绍文档叫做虚拟化URL)。
特点:
1、支持多浏览器,你可以试试他的Sample案例:Ajax Sample、Flash Sample,当然,还有更多Sample。
2、解决了History的问题,并提供标准的事件编程接口。
3、短小精悍,易于使用。
最简单的调用(基于MooTools的代码):
function handleChange(event) {
$('output').innerHTML += event.path + "\r\n";
SWFAddress.setTitle(event.path);
}
SWFAddress.addEventListener(SWFAddressEvent.CHANGE, handleChange);
$$('a').addEvent('click', function() {
var href = this.href.replace(location.protocol + '//' + location.host, '');
if (href.length <= 0) href = '/';
SWFAddress.setValue(href);
return false;
});
当然这不是一个很好的示例,只是为了说明,调用是多么的简单。
更多的参考,可以查看他的官方文档。
Numerical Recipes 3rd Edition
William H. Press、Saul A. Teukolsky、William T. Vetterling、Brian P. Flannery / Cambridge University Press / 2007-9-6 / GBP 64.99
Do you want easy access to the latest methods in scientific computing? This greatly expanded third edition of Numerical Recipes has it, with wider coverage than ever before, many new, expanded and upd......一起来看看 《Numerical Recipes 3rd Edition》 这本书的介绍吧!
