随笔分类 -  JavaScript

摘要:使用MD5加密的方法:下载md5.js文件,在网页中引用该文件:<script type="text/javascript" src="md5.js"></script>在你需要使用MD5加密的地方如此调用:<script type="text/javascript" > hash = hex_md5("test");</script>http://pajhome.org.uk/crypt/md5/ 阅读全文
posted @ 2011-08-24 23:54 Asharp 阅读(17557) 评论(0) 推荐(2) 编辑
摘要:JSON是专门为浏览器中的网页上运行的JavaScript代码而设计的一种数据格式。在网站应用中使用JSON的场景越来越多,本文介绍ASP.NET中JSON的序列化和反序列化,主要对JSON的简单介绍,ASP.NET如何序列化和反序列化的处理,在序列化和反序列化对日期时间、集合、字典的处理。 一、JSON简介 JSON(JavaScript Object Notation,JavaScript对象... 阅读全文
posted @ 2011-01-09 17:56 Asharp 阅读(150614) 评论(45) 推荐(70) 编辑
摘要:ExternalInterface 实现 JavaScript 与 ActionScript 之间的所有通信,ExternalInterface 类是外部 API,这是一个在 ActionScript 和 Flash Player 容器之间实现直接通信的应用程序编程接口。在 Flash Player 中,可以使用 HTML 页中的 JavaScript 来调用 ActionScript 函数。Ac... 阅读全文
posted @ 2010-09-03 01:48 Asharp 阅读(8501) 评论(1) 推荐(2) 编辑
摘要:方法一,利用ActiveX控件实现:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<scripttype="text/javascript">2functiongetFileSize(filePath)3{4varfso=newAc... 阅读全文
posted @ 2010-04-05 21:20 Asharp 阅读(19698) 评论(5) 推荐(3) 编辑