htmlparser2 HTML/XML 解析器开源项目

我要开发同款
白开水不加糖2021年08月26日
152阅读
开发技术TypeScript
所属分类HTML解析器、Web应用开发
授权协议MIT

作品详情

htmlparser2是一个fast&forgivingHTML/XML解析器。

npminstallhtmlparser2

htmlparser2的 livedemo:https://astexplorer.net/#/2AmVrGuGVJ

htmlparser2本身提供了一个回调接口,允许以最小的分配来消耗文档。为了获得更符合人体工程学的体验,可阅读下面的GettingaDOM。

consthtmlparser2=require("htmlparser2");constparser=newhtmlparser2.Parser({onopentag(name,attributes){/**Thisfireswhenanewtagisopened.**Ifyoudon'tneedanaggregated`attributes`object,*havealookatthe`onopentagname`and`onattribute`events.*/if(name==="script"&&attributes.type==="text/javascript"){console.log("JS!Hooray!");}},ontext(text){/**Fireswheneverasectionoftextwasprocessed.**Notethatthiscanfireatanypointwithintextandyoumight*havetostichtogethermultiplepieces.*/console.log("-->",text);},onclosetag(tagname){/**Fireswhenatagisclosed.**Youcanrelyonthiseventonlyfiringwhenyouhavereceivedan*equivalentopeningtagbefore.Closingtagswithoutcorresponding*openingtagswillbeignored.*/if(tagname==="script"){console.log("That'sit?!");}},});parser.write("Xyz<scripttype='text/javascript'>constfoo='<<bar>>';</script>");parser.end();

Output(withmultipletexteventscombined):

-->XyzJS!Hooray!-->constfoo='<<bar>>';That'sit?!
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论