替换为jquery函数

发布于 2024-10-18 16:16:00 字数 392 浏览 2 评论 0原文

我知道这很可能不是那个“聪明”的问题,但我无法理解这个函数是如何工作的,我想要的只是删除

中的标签给定的带有类 p_remove 的表,这是我的 jquery 代码:

$(document).ready(function() {
    $('.p_remove').each( function(){
        $("<p>" + $('.p_remove').text() + "</p>").replaceWith("" + $('.p_remove').text() + "");
    });
});

这个脚本实际上不起作用,因为以前的工作脚本没有按照我希望它们工作的方式工作:) 谢谢帮助!

I know that this is most probably will be not that "clever" question, but i couldn't understand how this functions works, all i want from it, is just to remove <p> tags in the given table with class p_remove, here is my jquery code:

$(document).ready(function() {
    $('.p_remove').each( function(){
        $("<p>" + $('.p_remove').text() + "</p>").replaceWith("" + $('.p_remove').text() + "");
    });
});

this script is actually doesnt work, because the previous working scripts didnt work in the way i wanted them to work :) Thx for help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

思念满溢 2024-10-25 16:16:00
$('.p_remove').each( function(){
    $self = $(this)
    $self.replaceWith( "<p>" + $self.text() + "</p>" );
});
$('.p_remove').each( function(){
    $self = $(this)
    $self.replaceWith( "<p>" + $self.text() + "</p>" );
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文