2013-03-16 63 views
0

是否有可能通過jsdom(我使用它與Node.js + JQuery)來獲取多行屬性的值?帶jsdom的多行屬性

該網站刮包括該HTML:

<li><a data-title="<strong>hello world 
this is a test</strong>" href="example.org</strong>">A link</a></li> 

不幸的是,這被解析到

<li><a data-title="data-title"><strong>hello world 
this is a test</strong>' href="example.org">A link</a></li> 

,所以我不能提取的標題和href屬性例如通過JQuery:$("a").attr("data-title")

任何想法?

回答