我正在尝试删除一个锚点标记,如果锚点标记没有值。但是当我检查它的显示3.所以需要添加<4的条件,但我希望它没有任何长度,如= 0或任何方式
<a href="https://www.example.com/abc/xyz"> </a>
字符串
if( !$(this).text() ) { $(this).remove(); }
型第二种方法
if( $(this).text().length === 0 ) { $(this).remove(); }
型
ukqbszuj1#
3是锚点中白色的长度,因此使用String::trim()检查锚点的文本是否为空:
3
String::trim()
const remove = () => { const $anchor = $('a'); if(!$anchor.text().trim()){ console.log('removing the anchor!'); $anchor.remove(); } console.log('anchors on the page:', $('a').length); };
个字符
1条答案
按热度按时间ukqbszuj1#
3
是锚点中白色的长度,因此使用String::trim()
检查锚点的文本是否为空:个字符