タグ

selectorsに関するamachangのブックマーク (2)

  • Surfin’ Safari - Blog Archive » querySelector and querySelectorAll

    Posted by David Smith on Thursday, February 7th, 2008 at 2:41 pm A familiar and unpleasant sight in web applications is fragile code traversing the DOM to get to certain elements or collections of elements. Chains of getElementById("something").parent.parent are all too common, hurting both readability and flexibility. As a result, many javascript libraries have implemented functions to use the po

    amachang
    amachang 2008/02/08
    Safari のエンジン WebKit が W3C Selectors API を実装。 W3C Selectors API は CSS のセレクタで DOM のノードを取得する API。 :hover など、 XPath では出来ないこともある。これはすごい。
  • Selectors API Level 1 (W3C Working Draft 28 June 2012)

    Selectors API Level 1 W3C Recommendation 21 February 2013 superseded 3 November 2020 This Version: https://www.w3.org/TR/2020/SPSD-selectors-api-20201103/ Latest Version: https://www.w3.org/TR/selectors-api/ Previous Versions: https://www.w3.org/TR/2013/REC-selectors-api-20130221/ http://www.w3.org/TR/2012/PR-selectors-api-20121213/ http://www.w3.org/TR/2012/WD-selectors-api-20120628/ http://www.w

    amachang
    amachang 2007/10/29
    DOM から CSS の Selector を使う為の仕様。これで $ 関数や $$ 関数などの非互換なセレクタ API がこの名前に収まってくれればうれしいなあ。 XPath でいうところの DOM 3 XPath にあたる。
  • 1