JQuery中的MD5加密使用模式
JQuery中的MD5加密使用方式
JQuery中有给使用者提供MD5加密的直接使用的插件,使用方法如下:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="Scripts/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="Scripts/jquery.md5.js"></script>
<script type="text/javascript">
alert($.md5("Hello"));
</script>
</head>
<body>
</body>
</html>