gpt4 book ai didi

javascript - html 标签的分割值

转载 作者:行者123 更新时间:2023-12-02 19:33:04 27 4
gpt4 key购买 nike

我想从“a”html 标签中拆分一些内容。我从头开始使用jquery。我的代码是这样的,但它不起作用:

$("a.uribb").each(function() {
var id = $(this).attr("href").replace("http://dereferer.org/?", "");
$(this).append(+id+);
});

​HTML 标签是这样的:

<a href="http://dereferer.org/?http://example.com/" target="_blank" class="uribb">
http://example.com/
</a>

我想将 http://dereferer.org/? 部分拆分出来,并将另一部分留在那里。我怎样才能做到这一点?

最佳答案

如果要替换内容,请尝试使用 .text() 而不是 .append()。另外,id 前后不需要 +

你可以尝试这个:

var id = $(this).attr("href").replace("http://dereferer.org/?", "");
$(this).text(id);

更新

再次阅读问题,我不确定您是否要替换 a 标记的内容或 href 的值。如果是后者,请尝试以下操作:

var id = $(this).attr("href").replace("http://dereferer.org/?", "");
$(this).attr("href", id);

通知

自 jQuery 1.6 起,首选使用 .prop()而不是 .attr()

关于javascript - html 标签的分割值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11277828/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com