here is my code :<br>import urllib<br>import lxml.html<br>down='<a href="http://download.v.163.com/dl/open/00DL0QDR0QDS0QHH.html" target="_blank">http://download.v.163.com/dl/open/00DL0QDR0QDS0QHH.html</a>'<br>file=urllib.urlopen(down).<div id=":8e">
read()<br>
root=lxml.html.document_fromstring(file)<br>tnodes = root.xpath("//a/@href[contains(string(),'mp4')]")<br>for i,add in enumerate(tnodes):<br>    print  i,add<br><br>why i can get nothing?</div>