加载dom后,有些插件就像这个文本一样:
<text x="1080" text-anchor="end" zIndex="8" style="cursor:pointer;color:#909090;font-size:9px;fill:#909090;" y="395">test.com</text>
我想在text标签中删除test.com。我们如何用jquery做到这一点?
答案 0 :(得分:1)
在jQuery中使用html('')
方法
$('text').html('');
如果您只想删除 test.com ,请使用
$('text').html(function(v){return v.replace('test.com','','g');});
答案 1 :(得分:0)
这取决于具体情况以及您是否在HTML
内添加了更多<text>
代码。如果是这样,请使用
$('text').text('');