您的位置:首页源码下载JavaScript代码

jQuery XPath下载(实现跨frame文档查询)

授权形式: 免费版
更新时间: 2013-05-05 12:09:26
软件语言: 多国语言
软件平台: Windows,Linux
软件类别: 程序源码
文件大小: 未知
评论等级: ★★★☆☆
下载次数: 0(今日:,本周:,本月:

软件简介

jQuery XPath 0.2.5 发布,该版本支持跨帧(frame)的文档查询。jQuery XPath 是一个 jQuery 插件,实现了全功能的 XPath 2.0 查询语言。

jQuery XPath 是一个 jQuery 插件,实现了全功能的 XPath 2.0 查询语言。

示例代码:

$(document).xpath("*"); // Returns {Element} html (direct child of context item - document)
$(document).xpath("//head << //body"); // Returns {Boolean} true (head is preceding body)
$(document).xpath("//*[parent::html][last()]") // Returns {Element} body (last child of html)
$(document.body).xpath("count(ancestor::node())"); // Returns {Number} 2 (2 ancestor nodes)
$(document.body).xpath("preceding-sibling::element()"); // Returns {Element} head (prev sibling)
$(document.documentElement).xpath("body | head"); // Returns {Element} head and body (ordered)
$(document.documentElement).xpath("body, head"); // Returns {Element} body and head (not ordered)

赞助商链接: