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

Learn Python the Hard Way

Learn Python the Hard Way

Zed A. Shaw / Addison-Wesley Professional / 2013-10-11 / USD 39.99

Master Python and become a programmer-even if you never thought you could! This breakthrough book and CD can help practically anyone get started in programming. It's called "The Hard Way," but it's re......一起来看看 《Learn Python the Hard Way》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具