当前位置: 首页 > 图文教程 > 网络编程 > Javascript > 用javascript实现分割提取页面所需内容

Javascript
js一组验证函数
JavaScript 字符串连接性能优化
JavaScript CSS 菜单功能代码
jQuery 各种浏览器下获得日期区别
清除网页历史记录,屏蔽后退按钮!
关于IE7 IE8弹出窗口顶上
javascript StringBuilder类实现
通过event对象的fromElement属性解决热区设置主实体的一个bug
Javascript 布尔型分析
javascript 动态参数判空操作
js 解决“options为空或不是对象”
javascript 语法学习练习
javascript 硬盘序列号+其它硬件信息
window.location和document.location的区别分析
javascript XML数据显示为HTML一例
HTML与javascript常碰到的编码问题
javascript 时间对象的练习
JavaScript 事件参考手册
javascript prototype,executing,context,closure
javascript 网页跳转的方法

Javascript 中的 用javascript实现分割提取页面所需内容


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-12   浏览: 309 ::
收藏到网摘: n/a

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>文档</title>
<style>
textarea {
width:100%;
height:200px;
}
</style>
</head>
<body>
<textarea id="xxx">
<P><KBD class=showflash title=http://localhost/elearning/storeagemultimirror/multiMirror.swf> 正文正文<a href="javascript:;" onClick="javascript:tagshow(event, '%D0%E9%C4%E2%BB%AF');" target="_self"><u><strong>标签</strong></u>< /a>正文正文正文正文正文正文。</KBD><BR></P>
</textarea>
<input type="button" value="获取内容" onclick="getcontent();" />
<textarea id="aaa"></textarea>
<textarea id="bbb"></textarea>
<script>
function getcontent(){
var str=document.getElementById("xxx").value;
document.getElementById("aaa").value=str.match(/<KBD.+?title=["']?(.+?)[ '">]/i)[1];
document.getElementById("bbb").value=str.match(/<KBD.+?>((?:.|\n)+?)<\/KBD>/i)[1];
}
</script>
</body>
</html>