| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
11年前发布

Objective-C写的HTML5解析引擎:OCGumbo

OCGumbo是一个Objective-C写的HTML5解析引擎,基于Google gumbo开源项目。

OCGumbo除了基础的解析功能外,最大的特色是对增加了类似JQuery的查询功能。

示例代码:

OCGumboDocument *document = [[OCGumboDocument alloc] initWithHTMLString:htmlString];  OCGumboElement *root = document.rootElement;  //document: do something with the document.  //rootElement: do something with the html tree.    NSLog(@"options: %@", document.Query(@"body").find(@"#select").find(@"option"));    NSLog(@"title: %@", document.Query(@"title").text());    NSLog(@"attribute: %@", document.Query(@"select").first().attr(@"id"));    NSLog(@"class: %@", document.Query(@"#select").parents(@".main"));

项目主页:http://www.open-open.com/lib/view/home/1377094949975

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1377094949975.html
OCGumbo HTML操作类库