是否有插件允许我这样做?它说here (XPath Compatibility Plugin)在Jquery 1.2版本中删除了该功能,并且它链接的插件已经消失了!
答案 0 :(得分:10)
大多数浏览器都支持document.evaluate()
来选择带有XPath表达式的元素 - 不需要jQuery。唯一没有支持的主要浏览器是Internet Explorer。但是,Dimitri Glazkov有created a library将实现IE的缺失功能。
var result = document.evaluate("//a[@href='#']", document, null, 0, null),
item;
while (item = result.iterateNext()) {
// item will be an <a> element with href="#" here
}
您也可以轻松创建一个插件来包装此功能:
(function($) {
$.xpath = function(exp, ctxt) {
var item, coll = [],
result = document.evaluate(exp, ctxt || document, null, 5, null);
while (item = result.iterateNext())
coll.push(item);
return $(coll);
}
})(jQuery);
// And call it like so:
$.xpath("//a[@href='#']").click(function () { return false; });