好文档 - 专业文书写作范文服务资料分享网站

八爪鱼xpath入门教程以及定位元素实例

天下 分享 时间: 加入收藏 我要投稿 点赞

八爪鱼·云采集服务平台

www.bazhuayu.com

xpath入门教程以及定位元素实例

本文用来讲解xpath的入门基础,本教材是xpath入门2,建议大家从入门1教程开始学习

Xpath的教程适合对八爪鱼已经有一些基础的用户来学习。 示例地址

/tutorial?type=0&page=0&tag=è??é??&version=other

Xpath:是一种路径查询语言,简单的说就是利用一个路径表达式找到我们需要的数据位置。 Html:超文本标记语言,是用来描述网页的一种语言。主要用于控制数据的显示和外观。HTML文档也被称为网页。

Xpath专用于xml中沿着路径查找数据用的,但是八爪鱼采集器内部有一套针对Html的Xpath引擎,使得直接用Xpath就能精准的查找定位网页里面的数据。

xpath入门2-图1

八爪鱼·云采集服务平台

www.bazhuayu.com

例如下图通过火狐的firebug、firepath查看网页源码。查看方法参考“xpath入门1”教程

xpath入门2-图2

完整的HTML文件至少包括标签、标签、标签和<BODY>标签,并且这些标签都是成对出现的,开头标签为<>,结束标签为</>,在这两个标签之间添加内容。通过这些标签中的相关属性可以设置页面的背景色、背景图像等。 </p><p>Html标签 </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p> </p><p>作为开始和结束的标记由尖括号包围的关键词,比如 <html>标签对中,第一个标签是开始标签,第二个标签是结束标签 元素 </p><p>HTML的网页内容是由元素组成的,从开始标签到结束标签的所有代码。 元素的开始和结束都使用标签作为开始和结束的标记 节点 </p><p>所有事物都是节点 整个文档是一个文档节点 每个 HTML 元素是元素节点 HTML元素内的文本是文本节点 每个 HTML 属性是属性节点 注释是注释节点 </p><p>Html常见标签 </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p> </p><p><a></a> 定义超链接,用于从一张页面链接到另一张页面 <h1></h1> 文本标题标签,最大的标签。从1到6,有6层选择 <p></p> 段落标记标签 </p><p><div></div> 可定义文档中的区域或节、可以把文档分割为不同的部分,是一个块级元素 </p><p><ul></ul> 创建一个列表 <li></li> 创建列表内容项 </p><p><input> 用于搜集用户信息可以是文本字段、复选框、按钮等等 <img></img> 向网页中嵌入一幅图像,从网页中链接图像 <table></table> 创建一个表格 <tr></tr> 表格中的每一行 </p><p><th></th> 设置表格头,通常是黑体居中文字 <option></option> 设置每个表单项的内容,选项 可以通过这些常见的标签找到数据的位置。 </p><p>例如//a就代表能匹配到这个网页中所有可以点击的链接 </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p> </p><p> </p><p>xpath入门2-图3 </p><p> </p><p>Html常见属性 </p><p>属性是用来修饰标签的,放在开始标签里面 class </p><p>规定元素的类名,大多数时候用于指定样式表中的类 id </p><p>唯一标识一个元素的属性,在html里面必须是唯一的 href </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p> </p><p>指定超链接目标的url src </p><p>图像文件的url </p><p>例如//span[@class='itemWithIcon calendar']通过class这个属性就匹配到了当前页面所有的日期。 </p><p> </p><p>xpath入门2-图4 </p><p> </p><p>Xpath常见写法 text() 文本定位位置 </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p> </p><p>例如//a[text()='下一页 ? '] </p><p>通过源码中文本“下一页 ?”就匹配到了,这个text()是需要精确匹配源码中的文本的 </p><p> </p><p>xpath入门2-图5 </p><p>contains() </p><p>用来判断字符串的一部分 contains(text(),'') contains(@class,'') </p><p> 这个contains是用来模糊匹配的,可以看到源码中显示的是“下一页 ?”,用contains只需要“下一页”3个字就可以了 </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p> </p><p> </p><p>xpath入门2-图6 </p><p>positon() 表示节点的序号 last() //div[last()] </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p> </p><p> </p><p>xpath入门2-图7 </p><p>首先看到上图中xpath </p><p>html/body/div[1]/div[3]/div/div/div[2]/div[1]/div匹配到了网页中的所有教程,但是我们如果只需要里面几项的时候就可以使用position() 如下图: </p><p>通过html/body/div[1]/div[3]/div/div/div[2]/div[1]/div[position()=5],里面的[position()=5]就可以指定是某个具体的教程了。 </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p> </p><p> </p><p>xpath入门2-图8:[position()=5],指定某个具体教程 </p><p>following-sibling 当前元素的兄弟元素 </p><p>这个可以参看数字翻页的例子哈 </p><p>and\\or\\not and 并且与关系 or 并且或关系 not 不是 </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p> </p><p>例如下面的html/body/div[1]/div[3]/div/div/div[2]/div[1]/div[2]/div/a[@style and @href],其中的[@style and @href]就代表找到同时具有这两个style和href属性的a标签 </p><p> </p><p>xpath入门2-图9:[@style and @href],具有style和href属性的a标签 </p><p>相关阅读: </p><p>美团商家信息采集 豆瓣电影短评采集 房天下信息采集 </p><p> </p><p> </p><p>八爪鱼——70万用户选择的网页数据采集器。 </p><p>八爪鱼·云采集服务平台 </p><p>www.bazhuayu.com </p><p> </p><p>1、操作简单,任何人都可以用:无需技术背景,会上网就能采集。完全可视化流程,点击鼠标完成操作,2分钟即可快速入门。 2、功能强大,任何网站都可以采:对于点击、登陆、翻页、识别验证码、瀑布流、Ajax脚本异步加载数据的网页,均可经过简单设置进行采集。 3、云采集,关机也可以。配置好采集任务后可关机,任务可在云端执行。庞大云采集集群24*7不间断运行,不用担心IP被封,网络中断。 4、功能免费+增值服务,可按需选择。免费版具备所有功能,能够满足用户的基本采集需求。同时设置了一些增值服务(如私有云),满足高端付费企业用户的需要。 </p><p></p><div class="page"><ul><li><a href=c2kwrp3f3eo6i8ss1c8w102tjb2ixwe014nd_1.html class="hover" >1</a></li></ul></div> </div> <a class="download_word download_word_lb" href="javascript:;" id="vipdown"><div class="download_card"><div class="card_nr card_nr_lb"><h4 class="card_bt">八爪鱼xpath入门教程以及定位元素实例</h4><div class="download_card_msg">八爪鱼·云采集服务平台www.bazhuayu.comxpath入门教程以及定位元素实例本文用来讲解xpath的入门基础,本教材是xpath入门2,建议大家从入门1教程开始学习Xpath的教程适合对八爪鱼已经有一些基础的用户来学习。示例地址/tutorial?type=0&pag</div></div><div class="download_card_btn download_card_btn_lb"><div class="content_box_tj"><span>推荐度:</span><img src="/skin/haowen/images/icon_star.png" alt=""> <img src="/skin/haowen/images/icon_star.png" alt=""> <img src="/skin/haowen/images/icon_star.png" alt=""> <img src="/skin/haowen/images/icon_star.png" alt=""></div><div class="downlod_btn_right demo_tc downlod_btn_right_lb"><em class="downlod_icon"></em>点击下载文档<span>文档为doc格式</span></div> </div></div></a> </article> <!-- 文章 --> <!-- 相关推荐 --> <div class="list_hot ar_related bj_mt20 louti"> <div class="head head3"><h4 class="f16">相关推荐文档</h4><span></span></div> <ul class="related_20"> <li><a title="2011-学习资料:教你怎样学粤语" href=c79lhw0nd3q0sr9z0o3k1_4.html>2011-学习资料:教你怎样学粤语</a></li><li><a title="全国影像系统操作手册V" href=c1wqk98rd2j3uh255c6he20sz532aec00cbl_6.html>全国影像系统操作手册V</a></li><li><a title="专题教学模式在“中国哲学史”课程中的运用.doc" href=c7gtm65opn9797950lpza3sk4u09qm100fh6_1.html>专题教学模式在“中国哲学史”课程中的运用.doc</a></li><li><a title="有关团员年度思想总结" href=c7nrdl0x17u3cwgi893aj3uh255c6oi00c2s_1.html>有关团员年度思想总结</a></li><li><a title="八爪鱼xpath入门教程以及定位元素实例" href=c2kwrp3f3eo6i8ss1c8w102tjb2ixwe014nd_1.html>八爪鱼xpath入门教程以及定位元素实例</a></li><li><a title="中国百强电子商务网站排名 " href=c2fszy9atx379c964huzb_1.html>中国百强电子商务网站排名 </a></li><li><a title="Honda节能车大赛" href=c7uebb2n91g7916095d0f_1.html>Honda节能车大赛</a></li><li><a title="庐山考察报告" href=c7llhz1eihr75cln2zb9v_1.html>庐山考察报告</a></li><li><a title="谈水利工程建设项目水土保持评价-水利科技论文-水利论文" href=c0it0k2a6sr3uh255c6he20sz532aec00c97_1.html>谈水利工程建设项目水土保持评价-水利科技论文-水利论文</a></li><li><a title="2024年广东省本科一批投档分数线" href=c2w8ju86zja9kfa2517te4mn0g1mmhw00jp7_1.html>2024年广东省本科一批投档分数线</a></li><li><a title="中医药同名方学习资料:青皮饮6方" href=c65lx98x7of9uewu2s0h44x67j2pwcn01eca_1.html>中医药同名方学习资料:青皮饮6方</a></li><li><a title="小数四则混合运算练习卷" href=c87rq713taa0wacw0ffp9_1.html>小数四则混合运算练习卷</a></li><li><a title="2020河南本科一批理科投档线(排序版)" href=c16t0y6d8q16et871df8g8njyy26yqz018n3_2.html>2020河南本科一批理科投档线(排序版)</a></li><li><a title="企业违章指挥行为识别与预防管理" href=c5hx1x18n8u8mpoj7ocb09o8y29wt5t00z2k_1.html>企业违章指挥行为识别与预防管理</a></li><li><a title="东大19春学期《管理文秘》在线作业1[标准答案] " href=c64xql6blle6bod04q39t7z7sh75m1a00oew_2.html>东大19春学期《管理文秘》在线作业1[标准答案] </a></li><li><a title="2019年数学二考研大纲(教育部考试中心)" href=c745955u32m9ersa9pruq6ksx797jp100wlx_1.html>2019年数学二考研大纲(教育部考试中心)</a></li><li><a title="中学教师资格证考试《综合素质》模拟试题" href=c6ufpu74jwj0h1ll01eyq0a6ri16osu014dx_1.html>中学教师资格证考试《综合素质》模拟试题</a></li><li><a title="学风建设主题班会学习心得" href=c3q9yb2ovbe3y3j84vsq02xzhu2kzn0009uy_1.html>学风建设主题班会学习心得</a></li><li><a title="初一劳动技术教案 " href=c0pulh6i48a5zpak1cslt1is53085cn00i9a_3.html>初一劳动技术教案 </a></li><li><a title="2019年河海大学西方经济学真题回忆" href=c6mo8p5f76n75cln2z0an3ef8l940oa007wd_1.html>2019年河海大学西方经济学真题回忆</a></li><li><a title="2018北师大版生物七年级下册11.1人体产生的代谢废物练习题" href=c00idc3f0ee670et7c26i4qfr0177x6016jm_1.html>2018北师大版生物七年级下册11.1人体产生的代谢废物练习题</a></li><li><a title="我的语文老师作文(10篇)" href=c077qm0g16q05ej21u0rq9kfa25180i00k5y_1.html>我的语文老师作文(10篇)</a></li><li><a title="全国第四轮学科评估“A-”以上等次相应学科名单s" href=c8bxqe6rzht4zk8m0hvkq6k2tg1xudp00s7r_1.html>全国第四轮学科评估“A-”以上等次相应学科名单s</a></li><li><a title="阅读与写作:莫被“成功学”绑架人生选择 阅读写作导写练" href=c09r1x8ue824g4gh0kzl91od1e2lmz900xxz_1.html>阅读与写作:莫被“成功学”绑架人生选择 阅读写作导写练</a></li><li><a title="2024-2024学年高二生物人教版选修一课下能力提升:(八) 月季的花药培养 " href=c7uel40zuhx2xn8u9whcj4n25q6ny0j004gr_1.html>2024-2024学年高二生物人教版选修一课下能力提升:(八) 月季的花药培养 </a></li><li><a title="数据库大作业" href=c15wwn7hoga4qfr016rks_6.html>数据库大作业</a></li><li><a title="专题01 过“三关”破解概率与统计问题(第六篇)-2020年高考数学压轴题命题区" href=c7myvp8oynt1xu1x81dzc4m0xd0pwbf00no6_1.html>专题01 过“三关”破解概率与统计问题(第六篇)-2020年高考数学压轴题命题区</a></li><li><a title="电脑如何录制讲课视频" href=c2dpco42z9y0sr9z0p01l1xu1x81dzc00o9y_1.html>电脑如何录制讲课视频</a></li><li><a title="药品不良反应与药害事件监测报告管理制度" href=c7uep02satq072ie1yi364bptb11wxs00md0_1.html>药品不良反应与药害事件监测报告管理制度</a></li><li><a title="幼儿园卫生保健十项制度2014" href=c05sui0geu79uewu2soe7_1.html>幼儿园卫生保健十项制度2014</a></li><li><a title="让青春绽放光彩主题演讲稿" href=c7d3pe61cy91is530855j3blzb1bwa600hq5_1.html>让青春绽放光彩主题演讲稿</a></li><li><a title="“十四五”电网发展规划中的关键问题思考 - 图文" href=c5hoof9wqcl1jxus0hkxz44s0w0d4ij00w3s_2.html>“十四五”电网发展规划中的关键问题思考 - 图文</a></li><li><a title="电针足三里对应激性胃溃疡大鼠胃组织 HSP70mRNA 的影响" href=c7ud7z2jejq17c19373fh7l7tx29ybm00g6r_1.html>电针足三里对应激性胃溃疡大鼠胃组织 HSP70mRNA 的影响</a></li><li><a title="数据库大作业" href=c15wwn7hoga4qfr016rks_2.html>数据库大作业</a></li><li><a title="(整理)光纤光学-第三章" href=c5him51i3ye5a66i6tmib55397303xo010aq_1.html>(整理)光纤光学-第三章</a></li><li><a title="小方坯质量的特点" href=c67a2844eeh57ejb0pt7j_1.html>小方坯质量的特点</a></li><li><a title="卓越绩效评价准则测试题答案" href=c6iq8i523u157eja0pqkz5136q5t3t4006u3_1.html>卓越绩效评价准则测试题答案</a></li><li><a title="滤波反投影程序设计报告" href=c534qr6ehvg4ddq3430jm4g4gh0kze500yfx_1.html>滤波反投影程序设计报告</a></li><li><a title="幼儿园小班音乐律动《大猫小猫》教师资格证面试试讲教案模板教师招聘试讲教案" href=c7ueq658hm31xep036fj71ujtp7zr5k019lx_1.html>幼儿园小班音乐律动《大猫小猫》教师资格证面试试讲教案模板教师招聘试讲教案</a></li><li><a title="最新2020年员工集体生日聚会主持词范文示例" href=c22nve491u23y3j84vsq02xzhu2kzfw009oy_1.html>最新2020年员工集体生日聚会主持词范文示例</a></li><li><a title="2016江苏对口单招高考试卷英语" href=c55eca8e3ot8uhsm07tfq670et7c1ze0174k_1.html>2016江苏对口单招高考试卷英语</a></li><li><a title="超高层材料设备运输方案" href=c0voki3q76e1xkfw968ko77t6k14pg601b5g_1.html>超高层材料设备运输方案</a></li><li><a title="广东关于成立年产xx台变压器公司可行性分析报告" href=c71y5p4434r4c2db011p1797950lq6e00f8i_1.html>广东关于成立年产xx台变压器公司可行性分析报告</a></li><li><a title="精选小学教师教学计划模板合集5篇" href=c6cliz4mcud97tl37kuug5o77k30e1i00qqh_1.html>精选小学教师教学计划模板合集5篇</a></li><li><a title="宁夏育才中学2017届高三上学期第二次月考地理试题(含答案)" href=c7ufqh1f4su38gut0xsx29kcek7hm3l0142k_1.html>宁夏育才中学2017届高三上学期第二次月考地理试题(含答案)</a></li><li><a title="2019-2020山东青岛红建投资有限公司招聘试题及答案.docx" href=c7hc759b1wv76vac3ljxx41z4g1sgjh0185x_1.html>2019-2020山东青岛红建投资有限公司招聘试题及答案.docx</a></li><li><a title="Job Description职位说明书" href=c0ic4y3gr8220sz43254c_1.html>Job Description职位说明书</a></li><li><a title="数据库大作业" href=c15wwn7hoga4qfr016rks_1.html>数据库大作业</a></li><li><a title="2019年监理工程师考试合同管理真题及答案" href=c74tmx6903p5gf8x599ez10e609m8f001bat_4.html>2019年监理工程师考试合同管理真题及答案</a></li><li><a title="网络游戏网站维护工程师工作简历模板_简历模板.doc" href=c4mylu7mb73721et5ixox47ty70kcsx004zb_1.html>网络游戏网站维护工程师工作简历模板_简历模板.doc</a></li><li><a title="微影梦工厂创业计划书" href=c02yd90p5aw5v45r56fo51lh1d7s0s500939_5.html>微影梦工厂创业计划书</a></li><li><a title="校园文化节主持词海伦英语第二届校园艺术文化节主持词" href=c07tch7iknq0sr9z0p01l1xu1x81ds800o9d_1.html>校园文化节主持词海伦英语第二届校园艺术文化节主持词</a></li><li><a title="部编版二年级下册语文《当世界年纪还小的时候》练习题训练" href=c7ueu453v4s2b61z97l7x8uhsm07tmu016yj_1.html>部编版二年级下册语文《当世界年纪还小的时候》练习题训练</a></li><li><a title="大学噪声控制工程期末复习资料" href=c2xj684vv5y7dd7d92wae4uc568cqcf01a69_1.html>大学噪声控制工程期末复习资料</a></li><li><a title="高考英语书面表达题型分析" href=c06zkz5pcvc4x67j2pwjr92i2p9mf5d01dr1_1.html>高考英语书面表达题型分析</a></li><li><a title="育婴师考证条件" href=c6cl7o1dex15gf8x599ez10e609m8f001be2_1.html>育婴师考证条件</a></li><li><a title="四年级下册品德与社会人教版复习资料" href=c7miln2m0hl6trx01723y3gzju6vsv000dl8_1.html>四年级下册品德与社会人教版复习资料</a></li><li><a title="台北县林口乡丽林国民小学九十七学年度上学期午会会议记录" href=c296nr96tac7b3ef97wu606i7k4ff8500zfz_2.html>台北县林口乡丽林国民小学九十七学年度上学期午会会议记录</a></li><li><a title="数据库大作业" href=c15wwn7hoga4qfr016rks_4.html>数据库大作业</a></li><li><a title="20春国家开放大学离散数学形考任务1资料参考答案" href=c4lvyt1ab033j4le87moy0088t3x4ji00je5_1.html>20春国家开放大学离散数学形考任务1资料参考答案</a></li> </ul> </div> <!-- 相关推荐 --> <!-- 精选图文 --> <div class="list_pic ar_pic bj_mt20 louti"> <div class="head head2"><h4 class="f16">精选图文</h4><span></span></div> <ul class="bj_mt26"> <li class="pic_lb2 fl"> <a href="/view-s100p0c7021.html" title="海底两万里高三读书笔记800字5篇" target="_blank" class="lb_img photo"><img src="https://www.haowendang.cn/uploads/titlepic/1644975762624809.jpg" alt="海底两万里高三读书笔记800字5篇"></a> <a href="/view-s100p0c7021.html" title="海底两万里高三读书笔记800字5篇" target="_blank" class="lb_bt chao">海底两万里高三读书笔记800字5篇</a> <div class="lb_b f12"> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="c9">读后感800字</a> <time>02-27</time> </div> </li> <li class="pic_lb2 fl"> <a href="/view-s100p0c32019.html" title="海底两万里高三读书笔记800字5篇" target="_blank" class="lb_img photo"><img src="https://www.haowendang.cn/uploads/titlepic/1644975762624809.jpg" alt="海底两万里高三读书笔记800字5篇"></a> <a href="/view-s100p0c32019.html" title="海底两万里高三读书笔记800字5篇" target="_blank" class="lb_bt chao">海底两万里高三读书笔记800字5篇</a> <div class="lb_b f12"> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="c9">读后感800字</a> <time>02-27</time> </div> </li> <li class="pic_lb2 fl"> <a href="/view-s100p0c31166.html" title="平凡的世界大学生读后感作文800字(10篇)" target="_blank" class="lb_img photo"><img src="https://www.haowendang.cn/uploads/titlepic/1648718166552979.jpg" alt="平凡的世界大学生读后感作文800字(10篇)"></a> <a href="/view-s100p0c31166.html" title="平凡的世界大学生读后感作文800字(10篇)" target="_blank" class="lb_bt chao">平凡的世界大学生读后感作文800字(10篇)</a> <div class="lb_b f12"> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="c9">读后感800字</a> <time>02-27</time> </div> </li> <li class="pic_lb2 fl"> <a href="/view-s100p0c6244.html" title="平凡的世界大学生读后感作文800字(10篇)" target="_blank" class="lb_img photo"><img src="https://www.haowendang.cn/uploads/titlepic/1648718166552979.jpg" alt="平凡的世界大学生读后感作文800字(10篇)"></a> <a href="/view-s100p0c6244.html" title="平凡的世界大学生读后感作文800字(10篇)" target="_blank" class="lb_bt chao">平凡的世界大学生读后感作文800字(10篇)</a> <div class="lb_b f12"> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="c9">读后感800字</a> <time>02-27</time> </div> </li> <li class="clear"></li> </ul> </div> <!-- 精选图文 --> </div> <div class="con_r fr"> <!-- 搜索 --> <div class="search ar_search"> <form name="search_news" method="post" class="search_f yj_10" action="/e/search/index.php" id="keyword"> <em class="iconfont icon-sousuo ca"></em> <input type="text" name="keyboard" id="keyword" class="search_text nobian f16 fl" placeholder="请输入您搜索的内容" required="" oninvalid="setCustomValidity('请输入您搜索的内容');" oninput="setCustomValidity('');"> <input type="submit" class="search_btn nobian cursor f12 ca fr" value="搜索"> <input type="hidden" name="tempid" value="1"> <input type="hidden" name="show" value="title"> <input type="hidden" name="tbname" value="news"> </form> </div> <!-- 搜索 --> <div class="author_btn"></div> <!-- 热门排行 --> <div class="hot r_rwap bj_mt10"> <div class="head"><h4 class="f16">热门排序</h4><span></span></div> <ul class="lm_hot sideMen bj_mt20"> <li class="lb_w1"> <a href="/view-s100p0c31911.html" title="托尔斯泰《战争与和平》有感" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>1</span> <a href="" title="托尔斯泰《战争与和平》有感" target="_blank" class="lb_bt chao2">托尔斯泰《战争与和平》有感</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> <li class="lb_w1"> <a href="/view-s100p0c6912.html" title="托尔斯泰《战争与和平》有感" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>2</span> <a href="" title="托尔斯泰《战争与和平》有感" target="_blank" class="lb_bt chao2">托尔斯泰《战争与和平》有感</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> <li class="lb_w1"> <a href="/view-s100p0c7021.html" title="海底两万里高三读书笔记800字5篇" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>3</span> <a href="" title="海底两万里高三读书笔记800字5篇" target="_blank" class="lb_bt chao2">海底两万里高三读书笔记800字5篇</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> <li class="lb_w1"> <a href="/view-s100p0c32019.html" title="海底两万里高三读书笔记800字5篇" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>4</span> <a href="" title="海底两万里高三读书笔记800字5篇" target="_blank" class="lb_bt chao2">海底两万里高三读书笔记800字5篇</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> <li class="lb_w1"> <a href="/view-s100p0c6279.html" title="戏剧《哈姆雷特》阅读心得优秀例文" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>5</span> <a href="" title="戏剧《哈姆雷特》阅读心得优秀例文" target="_blank" class="lb_bt chao2">戏剧《哈姆雷特》阅读心得优秀例文</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> <li class="lb_w1"> <a href="/view-s100p0c31216.html" title="戏剧《哈姆雷特》阅读心得优秀例文" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>6</span> <a href="" title="戏剧《哈姆雷特》阅读心得优秀例文" target="_blank" class="lb_bt chao2">戏剧《哈姆雷特》阅读心得优秀例文</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> <li class="lb_w1"> <a href="/view-s100p0c31166.html" title="平凡的世界大学生读后感作文800字(10篇)" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>7</span> <a href="" title="平凡的世界大学生读后感作文800字(10篇)" target="_blank" class="lb_bt chao2">平凡的世界大学生读后感作文800字(10篇)</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> <li class="lb_w1"> <a href="/view-s100p0c6244.html" title="平凡的世界大学生读后感作文800字(10篇)" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>8</span> <a href="" title="平凡的世界大学生读后感作文800字(10篇)" target="_blank" class="lb_bt chao2">平凡的世界大学生读后感作文800字(10篇)</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> <li class="lb_w1"> <a href="/view-s100p0c31213.html" title="《名人传》阅读心得范文800字" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>9</span> <a href="" title="《名人传》阅读心得范文800字" target="_blank" class="lb_bt chao2">《名人传》阅读心得范文800字</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> <li class="lb_w1"> <a href="/view-s100p0c6278.html" title="《名人传》阅读心得范文800字" target="_blank" class="lb_wimg"><em class="icon"></em></a> <div class="lb_nr"> <span>10</span> <a href="" title="《名人传》阅读心得范文800字" target="_blank" class="lb_bt chao2">《名人传》阅读心得范文800字</a> <a href="/list-0-100.html" target="_blank" title="读后感800字" class="lb_lm">读后感800字</a> </div> </li> </ul> </div> <!-- 推荐文章 --> <div class="hot r_rwap bj_mt10"> <div class="head head1"><h4 class="f16">推荐文章</h4><span></span></div> <div class="lm_hot bj_mt20"> <div class='pic_lb4'> <a href='/view-s100p0c31937.html' title='《浮生六记》读后感800字15篇' target='_blank' class='lb_img photo'><img src='https://www.haowendang.cn/uploads/titlepic/img001.jpg' alt='《浮生六记》读后感800字15篇'></a> <a href='/view-s100p0c31937.html' title='《浮生六记》读后感800字15篇' target='_blank' class='lb_bt chao2'>《浮生六记》读后感800字15篇</a> <div class='lb_b f12'> <a href='/list-0-100.html' target='_blank' title='读后感800字' class='c9'>读后感800字</a> </div> </div> <ul class="related_10"> <li><a title="宁夏育才中学2017届高三上学期第二次月考地理试题(含答案)" href=c7ufqh1f4su38gut0xsx29kcek7hm3l0142k_1.html>宁夏育才中学2017届高三上学期第二次月考地理试题(含答案)</a></li><li><a title="精选小学教师教学计划模板合集5篇" href=c6cliz4mcud97tl37kuug5o77k30e1i00qqh_1.html>精选小学教师教学计划模板合集5篇</a></li><li><a title="中学教师资格证考试《综合素质》模拟试题" href=c6ufpu74jwj0h1ll01eyq0a6ri16osu014dx_1.html>中学教师资格证考试《综合素质》模拟试题</a></li><li><a title="网络游戏网站维护工程师工作简历模板_简历模板.doc" href=c4mylu7mb73721et5ixox47ty70kcsx004zb_1.html>网络游戏网站维护工程师工作简历模板_简历模板.doc</a></li><li><a title="种植协会章程范本" href=c7udw68gpiy5ap1c1kzfj507xn0uyq600qia_1.html>种植协会章程范本</a></li><li><a title="专题01 过“三关”破解概率与统计问题(第六篇)-2020年高考数学压轴题命题区" href=c7myvp8oynt1xu1x81dzc4m0xd0pwbf00no6_1.html>专题01 过“三关”破解概率与统计问题(第六篇)-2020年高考数学压轴题命题区</a></li><li><a title="数据库大作业" href=c15wwn7hoga4qfr016rks_7.html>数据库大作业</a></li><li><a title="初中美术课课堂教学工作总结(2024新版)" href=c7uel11fb6y3cwgi893aj3uh255c6he00c6g_1.html>初中美术课课堂教学工作总结(2024新版)</a></li><li><a title="《四边形性质探索》——北师大版数学八年级上册单元测.doc" href=c5bevi3pwbm37lyd0yjbf83hrt8bf1m008ts_1.html>《四边形性质探索》——北师大版数学八年级上册单元测.doc</a></li><li><a title="数据库大作业" href=c15wwn7hoga4qfr016rks_2.html>数据库大作业</a></li> </ul> </div> </div> <!-- 推荐文章 --> <div class="hot r_rwap bj_mt10"> <div class="head head1"><h4 class="f16">热门标签</h4><span></span></div> <div class="lm_hot bj_mt20"> <a title="人教版小学二年级语文上册第七单元教案最新" href="sfjuk0pmkoi6ni1yfikinop0nrn1k1zfeyg3wobwfergglg1vk0pklkkcgk34_1.html" class="lb_2 chao f14">人教版小学二年级语文上册第七单元教案最新</a></li><a title="公立医院全成本核算及控制探讨-成本核算论文-会计论文" href="sg30o97gfvtpeg2wjdckdokl4oevgjujong8mjoirl4019jdckdokl4oevrlmk1z019fmirkxrlmk1z_1.html" class="lb_2 chao f14">公立医院全成本核算及控制探讨-成本核算论文-会</a></li><a title="堟蘿唁?henqingshu/c4v3ik4bxlk81m9" href="shenqingsh0us02w02t03203502x03202v03702w03901b02r01g03a01f02x02z01g02q03c03002z01k01d03101l_1.html" class="lb_2 chao f14">堟蘿唁?henqingshu/c4v3ik4b</a></li><a title="henqingshu/c2sjck1iwyn1x2cx44e" href="s02w02t03203502x03202v03702w03901b02r01e03702y02r02z01d02x03b03d03201d03c01e02r03c01g01g02t_1.html" class="lb_2 chao f14">henqingshu/c2sjck1iwyn1</a></li><a title="henqingshu/c5mz653gzy87g2499ip" href="s02w02t03203502x03202v03702w03901b02r01h03103e01i01h01f02v03e03d01k01j02v01e01g01l01l02x034_1.html" class="lb_2 chao f14">henqingshu/c5mz653gzy87</a></li><a title="堟蘿唁?堟蘿唁?堟蘿唁?堟蘿唁?2020届西藏拉萨市高三下学" href="shenqingsh0ushenqingsh0ushenqingsh0ushenqingsh0us01e01c01e01ci8ar5rqfjjihq3sikiul4fexfezi1y_1.html" class="lb_2 chao f14">堟蘿唁?堟蘿唁?堟蘿唁?堟蘿唁?2020届西藏</a></li><a title="堟蘿唁?堟蘿唁?堟蘿唁?高中生物 第2章 生物科学与农业 2" href="shenqingsh0ushenqingsh0ushenqingsh0usul4ffxn4vmll00wobw01eo9s00wn4vmllo29i1yff2g4cffe00w01e_1.html" class="lb_2 chao f14">堟蘿唁?堟蘿唁?堟蘿唁?高中生物 第2章 生物</a></li><a title="2024智慧树,知到《理性色彩智慧人生》章节测试【完整答案】" href="s01e01c01e01gk8qj8nkk1018nolg8g9hmmx2izrprmiuhk8qj8nfjun4v9hno9sps2ll7rmd9hsi30k1god0klk9ht_1.html" class="lb_2 chao f14">2024智慧树,知到《理性色彩智慧人生》章节测</a></li><a title="堟蘿唁?耐多药结核病的治疗药物" href="shenqingsh0uspaohlmpynp1vkl4n9hneslh7n87pynmll_1.html" class="lb_2 chao f14">堟蘿唁?耐多药结核病的治疗药物</a></li><a title="堟蘿唁?2024初级社会工作综合能力考试真题和答案和解析" href="shenqingsh0us01e01c01e01gg7xp0nny6fmiijpfocp30glkph9gbfpabrmdnj3u54gp8od0klkgp8r8jkgg_1.html" class="lb_2 chao f14">堟蘿唁?2024初级社会工作综合能力考试真题和</a></li> </div> </div> <!-- 推荐文章 --> </div> <div class="clear"></div> </div> </div> <!-- 底部 --> <!-- 底部 --> <footer class="footer"> <div class="footer_wrap main"> <div class="footer_t"> <div class="footer_nav fl"> <a href="/list-0-527.html" target="_blank">关于我们</a> <a href="/list-0-528.html" target="_blank">联系方式</a> <a href="/list-0-529.html" target="_blank">商务合作</a> <a href="/list-0-530.html" target="_blank">友情链接</a> <a href="/list-0-531.html" target="_blank">诚聘英才</a> </div> <a href="javascript:;" class="footer_phone fr"> <em class="iconfont icon-44"></em> <div class="qrcode ts"><img src="/skin/haowen/images/qrcode.png"><p>扫码手机访问</p></div> </a> <div class="clear"></div> </div> <div class="footer_b"> <p class="cf fl">本网站所有内容均由编辑和用户从互联网收集整理,如果您发现不合适的内容,<br>请联系我们进行处理,谢谢合作!合作QQ:78024566</p> <p class="cf fr">Copyright @ 2020 - <span class="years">2023</span> haowendang.cn All Rights Reserved<br>好文档 版权所有<a href="https://beian.miit.gov.cn/" target="_blank" >苏ICP备19068818号-5</a></p> {"error":401,"message":"token is not valid"} <div class="clear"></div> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?3f6cce9b10dc8cacdfd0b4d6b7d70c14"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!-- 底部 --> <!-- 右边定位导航 --> <div class="ar_louti1"><div class="right_nav rc_nav" id="loutinav" style="display: block;"><ul><li class=""><p class="chao2">正文标题</p></li><li class=""><p class="chao2">上下篇章</p></li><li class=""><p class="chao2">相关推荐</p></li><li class="active"><p class="chao2">精选图文</p></li><li class="last ts"><em class="iconfont ts icon-top"></em></li></ul></div></div> <!-- 右边定位导航 --> <em class="noshow myarcid">2kwrp3f3eo6i8ss1c8w102tjb2ixwe014nd</em> <!--1111--> <div class="artop ts"> <div class="artop_rwap"> <div class="artop_left"> <div class="artop_related ts fl"> <div class="related_hd"> <em class="iconfont icon-changjingtuijianpitchon"></em>向你推荐的相关文章 <em class="iconfont icon-gengduo ts"></em> </div> <div class="related_bd ts relist"> <h4>相关文章列表</h4> <ul> <li><a title="宁夏育才中学2017届高三上学期第二次月考地理试题(含答案)" href=c7ufqh1f4su38gut0xsx29kcek7hm3l0142k_1.html>宁夏育才中学2017届高三上学期第二次月考地理试题(含答案)</a></li><li><a title="精选小学教师教学计划模板合集5篇" href=c6cliz4mcud97tl37kuug5o77k30e1i00qqh_1.html>精选小学教师教学计划模板合集5篇</a></li><li><a title="中学教师资格证考试《综合素质》模拟试题" href=c6ufpu74jwj0h1ll01eyq0a6ri16osu014dx_1.html>中学教师资格证考试《综合素质》模拟试题</a></li><li><a title="网络游戏网站维护工程师工作简历模板_简历模板.doc" href=c4mylu7mb73721et5ixox47ty70kcsx004zb_1.html>网络游戏网站维护工程师工作简历模板_简历模板.doc</a></li><li><a title="种植协会章程范本" href=c7udw68gpiy5ap1c1kzfj507xn0uyq600qia_1.html>种植协会章程范本</a></li><li><a title="专题01 过“三关”破解概率与统计问题(第六篇)-2020年高考数学压轴题命题区" href=c7myvp8oynt1xu1x81dzc4m0xd0pwbf00no6_1.html>专题01 过“三关”破解概率与统计问题(第六篇)-2020年高考数学压轴题命题区</a></li><li><a title="数据库大作业" href=c15wwn7hoga4qfr016rks_7.html>数据库大作业</a></li><li><a title="初中美术课课堂教学工作总结(2024新版)" href=c7uel11fb6y3cwgi893aj3uh255c6he00c6g_1.html>初中美术课课堂教学工作总结(2024新版)</a></li><li><a title="《四边形性质探索》——北师大版数学八年级上册单元测.doc" href=c5bevi3pwbm37lyd0yjbf83hrt8bf1m008ts_1.html>《四边形性质探索》——北师大版数学八年级上册单元测.doc</a></li><li><a title="数据库大作业" href=c15wwn7hoga4qfr016rks_2.html>数据库大作业</a></li> </ul> </div> </div> <div class="artop_search fl"> <form name="search_news" method="post" class="search_f bg yj_10" action="/e/search/index.php" id="keyword"> <em class="iconfont icon-sousuo ca"></em> <input type="text" name="keyboard" id="keyword" class="search_text nobian f16 fl" placeholder="请输入您要搜索的内容" required="" /> <input type="submit" class="search_btn nobian cursor f16 ca fr" value="搜索文档"> <input type="hidden" name="tempid" value="1"> <input type="hidden" name="show" value="title"> <input type="hidden" name="tbname" value="news"> </form> </div> <div class="artop_download fr"> <div id="downdoc"></div> </div> </div> <div class="artop_right"> <div class="artop_code fr"> <a href="javascript:;" class="boon_btn">领取福利</a> <div class="code_rwap ts"> <p>微信扫码领取福利</p> </div> </div> <div class="artop_code fr"> <a href="javascript:;" class="share_btn">分享给好友</a> <div class="code_rwap ts"> <div id="qrcode" title="/view-s100p0c31203.html"></div> <p>微信扫码分享</p> </div> </div> </div> </div> </div> <!--fword--> <script src="/e/data/js/ajax.js" ></script> <script src="/skin/fword/js/jquery-1.8.3.min.js" ></script> <script src="/skin/fword/js/jquery.cookie.min.js" ></script> <script src="/skin/fword/layer/layer.min.js"></script> <script src="/skin/fword/js/clipboard.min.js"></script> <script src="/skin/fword/js/fword.js"></script> <script src="/skin/haowen/js/qrcode.js"></script> <link href="/skin/fword/css/fword.css" rel="stylesheet"> <span id="show_userinfo" style="display:none;"></span> <link rel="stylesheet" type="text/css" href="/skin/images/ajaxlogin.css" /> <div id="loginbox"></div><script type="text/javascript" src="/skin/images/login.js"></script> <div class="d_alert marks" style="display:none;"><div class="copy-alert alert-bounceIn"><div class="claos" id="closed"></div><div class="paybox"><div class="payitem item-active" isone="0" gmoney="10"><div class="paybox-title">单篇付费下载</div><div class="paybox-img" style="margin-top:15px;"><img src="/skin/fword/images/paper_one.png"></div><div class="paybox-art">付费后即可下载这篇文章</div><div class="paybox-money"><strong>限时特价:10元/篇</strong><span> 原价:20元 </span></div></div></div><div class="paybox"><div class="payitem" isone="1" ggroupid="2" gfen="0" gmoney="29" gdate="30"><span class="hot"></span><div class="paybox-title">月卡会员</div><div class="paybox-img" style="margin-top:15px;"><img src="/skin/fword/images/paper_more.png"></div><div class="paybox-art">每天5次免费下载</div><div class="paybox-money"><strong>29元/30天</strong></div></div></div><div class="payselect">请选择支付方式</div><div class="paybottom"><div class="paybox-bottom2 go-wxpay">微信支付</div><div class="paybox-bottom2 alipay paylogin2 go-alipay">支付宝支付</div></div><div class="xiazai"><div class="xiazai-box"><a href="javascript:;" onclick="showkf()" class="redown">联系客服</a><a href="javascript:;" class="redown" onclick="showkf()">忘记账号</a></div></div></div></div> <script type="text/javascript"> $("#closed").click(function () { $(".d_alert").fadeOut(200); }); $(".payitem").click(function(){ $(".payitem").removeClass("item-active"); $(this).addClass("item-active"); }); </script> <script type="text/javascript"> $(document).ready(function ($) { $("#vipdown").click(function () { $(".d_alert").fadeIn(200); $.ajax({ type: "POST", dataType: "json", url: "/e/extend/fword/check.php", data: {"aid": "2kwrp3f3eo6i8ss1c8w102tjb2ixwe014nd"}, async: false, success: function (data, textStatus, jqXHR) { if (data.code === "0") { //游客 var downid = "2kwrp3f3eo6i8ss1c8w102tjb2ixwe014nd" $(".go-wxpay").click(function(){ var readurl = "https://www.haowendang.cn/view.php&psrc="; var downurl = "https://www.haowendang.cn/d.asp?id="; var payurl = readurl; payurl = payurl.replace("view.php", "pay/pay.asp?id=2kwrp3f3eo6i8ss1c8w102tjb2ixwe014nd&p=1"); var gotourl = payurl + downurl + downid location.href = gotourl; }); } else if (data.code === "1") { //注册会员 var downid = "2kwrp3f3eo6i8ss1c8w102tjb2ixwe014nd" $(".go-wxpay").click(function(){ var readurl = "https://www.haowendang.cn/view.php&psrc="; var downurl = "https://www.haowendang.cn/d.asp?id="; var payurl = readurl; payurl = payurl.replace("view.php", "pay/pay.asp?id=2kwrp3f3eo6i8ss1c8w102tjb2ixwe014nd&p=1"); var gotourl = payurl + downurl + downid location.href = gotourl; }); } else { location.href = "/d.asp?id=2kwrp3f3eo6i8ss1c8w102tjb2ixwe014nd&p=1"; } } }); }) $('.theme-poptit .close').click(function () { $('.theme-popover-mask').fadeOut(100); $('.theme-popover').slideUp(200); }) }) </script> </body> </html>