替换为jquery函数
我知道这很可能不是那个“聪明”的问题,但我无法理解这个函数是如何工作的,我想要的只是删除
中的标签给定的带有类 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)