Closed kakaxicm closed 7 years ago
可以根据class来找到html元素吗?
可以利用xpath来查询。
比如:
let doc = Ji(htmlURL: URL(string: "YOUR_URL_STRING")!) let node = doc?.xPath("div[@class='YOUR_CLASS_NAME']")?.first print("title: \(node?.content)")
可以根据class来找到html元素吗?