我想从中获得parentid。
<div class="module-head" onclick="getURL('/DU/initAction.do?parentId=1063&categoryType=6')"></div>
我该如何实现?
设置:
html = <<-EOF
<div class="module-head" onclick="getURL('/DU/initAction.do?parentId=1063&categoryType=6')"></div>
EOF
hpricot:
doc = Hpricot html
或Nokogiri:
doc = Nokogiri::HTML html
有趣的是,这两者都是相同的:
doc.at('div')[:onclick][/parentId=(d+)/, 1]
#=> "1063"