Flash和Ajax开发的工具类库 SWFAddress

码农软件 · 软件分类 · AJAX框架/RIA · 2019-03-27 21:28:24

软件介绍

SWFAddress是一个短小精悍的类库,它是一个Flash和Ajax开发的工具类库,他提供兼容多平台、多浏览器下的location.hash(即URL部分的#之后的处理)的解决方案,并解决浏览器的History的兼容性问题(IE6、IE7)等(官方的介绍文档叫做虚拟化URL)。

特点:

1、支持多浏览器,你可以试试他的Sample案例:Ajax SampleFlash 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;
	});

 

当然这不是一个很好的示例,只是为了说明,调用是多么的简单。

更多的参考,可以查看他的官方文档

本文地址:https://codercto.com/soft/d/2297.html

Algorithms + Data Structures = Programs

Algorithms + Data Structures = Programs

Niklaus Wirth / Prentice Hall / 1975-11-11 / GBP 84.95

It might seem completely dated with all its examples written in the now outmoded Pascal programming language (well, unless you are one of those Delphi zealot trying to resist to the Java/.NET dominanc......一起来看看 《Algorithms + Data Structures = Programs》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具