使用jquery隐藏或替换文本

时间:2016-11-05 18:02:07

标签: jquery wordpress

this page上,您可以在面包屑下面看到“0here”文字。

该文字来自我甚至没有安装过的主题。我怀疑它来自数据库,因为我复制旧数据库以构建新网站。

无论如何,我试图隐藏/删除/替换“0”,否则它会出现在每一页上。

我正在努力......

<script>
jQuery(document).ready(function() {
jQuery(':contains("0here")').html().replace("0here", "");
});
</script>

但不行。我错过了什么?

1 个答案:

答案 0 :(得分:0)

尝试仅替换。我不认为你需要HTML。它适用于所有选择器。

//use one of them
jQuery(':contains("0here")').replace("0here", "");
jQuery(':contains("0here")').html("");
jQuery(':contains("0here")').val(""); //if input or text area