原理相同,只是需要读取页面的html代码:
1.读取本页面的汉字方法:
==========================================
<!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> new document </title>
<meta name="generator" content="editplus" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
</head>
<body>
汉字汉字
<input type="button" value="显示页面所有汉字" onclick='alert(document.documentElement.innerHTML.replace(/[^\u4e00-\u9fa5]/gi,""))'>
<a href="" title="">超级链接</a>
<p>段落标记</p>
</body>
</html>
==========================================
2.读取其他网页中的汉字,现使用xmlhttp获取数据然后使用同样的方法replace()即可。