我有一个div,显示着这段文字
<address class="address address--tight">
-17.7353231,-63.1696634, Av. Block, NY00, Miami, United States
</address>
我该如何隐藏前两个元素(坐标),只显示地址、城市和国家?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
根据提供的代码,您可以直接获取元素的
.textContent,然后在,上进行.split,移除前两部分,然后使用,进行.join。不过这种方法非常特定,如果您不能百分之百确定始终具有这个顺序和这些细节,可能会失败。<address class="address address--tight"> -17.7353231,-63.1696634, Av. Block, NY00, Miami, United States </address>