开发者

jquery xpath selection not working?

开发者 https://www.devze.com 2023-01-17 04:09 出处:网络
I need a way to select elements via xpath (NOT CSSpath or any other method, must strictly be x开发者_Go百科path)

I need a way to select elements via xpath (NOT CSSpath or any other method, must strictly be x开发者_Go百科path)

$(document).find("/html[1]/body[1]/div[4]/div[2]/div[1]/h1[1]/a[1]").css("background-color", "yellow")

This doesn't seem to work.


The support for XPATH selectors was dropped from jQuery. In version 1.2 from what I can gather.


The method find() uses a CSS Selector, not a XPath select.


You can use xpath directly in the selector though:

http://dev-tips.com/featured/jquery-tip-using-xpath-selectors

0

精彩评论

暂无评论...
验证码 换一张
取 消