英文:
Getting title of span tag
问题
我使用getElementsByClass
方法获取了一个元素,并注意到了span
标签的异常使用。文本并没有跨越一些文本,实际上文本位于标签特性" title "内。
这是我得到的内容:
<span style="background-image: url(/img/colors/q5.png); background-size: contain;" class="c-d-pl c-d" title="stainless steel"></span>
以下是我的代码:
Jsoup.connect("https://www.e-katalog.ru/ek-list.php?search="+product).get().getElementsByClass("c-d").get(0)
有人可以帮助提取span
标签的"title"数据吗?
英文:
I fetch an element using getElementsByClass and I noticed unusual use of span tag. Instead of spanning some text, the text is actually inside the tag characteristics - title.
Here is what I get:
<span style="background-image: url(/img/colors/q5.png); background-size: contain;" class="c-d-pl c-d" title="stainless steel"></span>
Here is my code:
Jsoup.connect("https://www.e-katalog.ru/ek-list.php?search_="+product).get().getElementsByClass("c-d").get(0)
Can someone help to fetch the "title" data of the span tag?
答案1
得分: 0
使用attr方法获取标签的属性
尝试以下代码
String s = Jsoup.connect("https://www.e-katalog.ru/ek-list.php?search_=" + product)
.get()
.getElementsByClass("c-d")
.get(0)
.attr("title");
英文:
Use attr method to get the attributes of tag
Try below code
String s = Jsoup.connect("https://www.e-katalog.ru/ek-list.php?search_="+product).get().getElementsByClass("c-d").get(0).attr("title");
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论