如果 p 标签围绕图像链接,是否剥离它?
我正在构建网站的平台以所见即所得模式在图像链接周围添加 p
标签,这会弄乱布局。如果 p
标签位于图像周围,我是否可以使用 jQuery 去除它?
<div class="post">
<p><a href="link"><img src="image"></a></p>
<p><a href="link"><img src="image"></a></p>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
示例: http://jsfiddle.net/6z4Sv/
如果有一些变化
p
元素内的层次结构,您可以这样做:示例: http://jsfiddle.net/6z4Sv/1/
如果您只想影响
div.post >p 源自该类的元素。
您可以根据需要使选择器更加具体或更加具体。
Example: http://jsfiddle.net/6z4Sv/
If there's some variation to the hierarchy inside the
p
elements, you can do this:Example: http://jsfiddle.net/6z4Sv/1/
And you can use
div.post
at the beginning of the selector if you only want to affectp
elements that descend from that class.You can make the selector more or less specific as need be.