在此先感谢您的帮助!
我有一个RSS,我想在我的页面上发布这个RSS的内容,但RSS来自WordPress,它包含一个评论按钮的图像.
问题1:如果我隐藏每个< img>从RSS中,我还隐藏了博客上发布的文章图片.
问题2:评论按钮< img> URL是顺序的,所以即使我可以隐藏“wordpress.com/comments/ … 12”,下一个按钮< img>网址是“wordpress.com/comments/ … 13”等等:(
图片的HTML:
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mulleralc.wordpress.com/35/">
有一种方法可以识别注释按钮图像:它是72像素×16像素.所以,我需要隐藏我页面上的每张图片,即72(宽)x 16(高).有没有办法在CSS或JavaScript中执行此操作?
既然我们有这样的编码:
img[src~="http://...url..."] {display: none;}
也许有类似的东西:
img[height="16"] {display: none;}
解决方法:
the comment button URL is sequential, so even if I could hide “wordpress.com/commentbutton/12”, the next button url is “wordpress.com/commentbutton/13” and so on