????4.2.1 ?????????
????tagname: ????tag????????
????ns|tag: ?????????????tag???????????fb|name??<fb:name>
????id: ?????????id?????
????.class: ?????????class?????
????[attribute]: ??????attrribute????????
????[^attri]: ????????attri?????????????
????[attr=value]: ??????????????????????????
????[attr^=value]?? [attr$=value]?? [attr*=value]: ?????????attr??????????????????value???????β?????value????????[href*=/path/]
????[attr~=regex]: ?????????attr??????????????????regex????????????
????*: ???????????
????4.2.2 ????????
????el#id: ?????????????id
????el.class: ?????????????class
????el[attr]: ???????????????????????????????
????????3?????????????a[href].highlight
????ancestor child: ????????div.content p????????<div class=”content”>?o???<p>????????
????ancestor > child: ??????????div.content > p???????????<div class="content">????μ?<p>???????div.content > *????????<div class="content">?μ????????
????siblingA + siblingB: ??????????div.head + div????????<div class="head"><div>?????????в???????????
????siblingA ~ siblingX: ????????h1 ~ p????<h1>??????????<p>?????
????el?? el?? el: ?????????????????????????????????????
????5????÷???
????/*
????previousSibling()??????????????
????nextSibling()?????????????
?????磺
????<form id=form1>
???????????Lily  <br/>
???????????Tom   <br/>
????????????Peter <br/>
????</form>
????*/
????Elements items = doc.select("form[id=form1]");
????Elements prevs = items.select("br");
????for(Element p : prevs){
????String prevStr = p.previousSibling().toString().trim());
????}
????/*
???????????????
????*/
????String itemTag = "div[class=mydiv]";
????String linkTag = "a"
????Elements items = doc.select(itemTag);
????Elements links = items.select(linkTag);
????for(Element l : links){
????String href = l.attr("abs:href");//????Href
????String absHref = l.attr("href");//???·??
????String text = l.text();
????String title = l.attr("title");
????}