我使用 getElementsByClass 獲取一個元素,并且注意到 span 標(biāo)簽的不尋常使用。該文本實(shí)際上位于標(biāo)簽特征 - 標(biāo)題內(nèi),而不是跨越某些文本。這是我得到的:<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標(biāo)簽的“標(biāo)題”數(shù)據(jù)嗎?
1 回答

慕標(biāo)琳琳
TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超9個贊
使用attr方法獲取標(biāo)簽的屬性
嘗試下面的代碼
String s = Jsoup.connect("https://www.e-katalog.ru/ek-list.php?search_="+product).get().getElementsByClass("c-d").get(0).attr("title");
- 1 回答
- 0 關(guān)注
- 142 瀏覽
添加回答
舉報
0/150
提交
取消