以 /{tag_ 开头的 jQuery href 属性
我需要删除文档中以“/{tag_”或“{tag_”开头的所有链接,
到目前为止我有 $("a[href^='/{tag_']").remove() ;
但它不起作用,
我也
$("a").each(function() {
var href = $(this).attr("href");
if(href == '') { // or anything else you want to remove...
$(this).remove();
}
$("a[href^='/{tag_']").remove();
});
试过 $(this).attr("href^='/{tag_'");
也不起作用,有什么想法吗?
谢谢塔拉
I need to remove all the links in my document that start with "/{tag_" or "{tag_"
so far I have $("a[href^='/{tag_']").remove();
but it's not working,
I also had
$("a").each(function() {
var href = $(this).attr("href");
if(href == '') { // or anything else you want to remove...
$(this).remove();
}
$("a[href^='/{tag_']").remove();
});
And I have tried $(this).attr("href^='/{tag_'");
also not working, Any ideas?
Thanks Tara
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这对我有用: http://jsfiddle.net/neuroflux/tKapr/1/
That works for me: http://jsfiddle.net/neuroflux/tKapr/1/
使用each 没有多大意义。
可以这样做:
Not much point in using the each.
Can just do:
另一种方法是使用
match
An alternative is to use
match