删除 HTML 使用 Java 删除对齐方式
我遇到了删除 HTML 文档中的对齐方式的问题。
<html>
<head>
</head>
<body>
<p style="margin-top: 0" align="center">
Hello World
</p>
<p style="margin-top: 0" align="center">
Java World
</p>
</body>
</html>
我的问题是如何在不影响第二段的情况下删除第一段的对齐方式。如果我使用正则表达式,它也会删除第二段的对齐方式。我非常感谢您对这个问题的任何评论。
I Have faces a issue with removeing alignment In HTML document.
<html>
<head>
</head>
<body>
<p style="margin-top: 0" align="center">
Hello World
</p>
<p style="margin-top: 0" align="center">
Java World
</p>
</body>
</html>
My Issue is how to remove alignment of first paragraph with out affecting second paragraph . If I use regex it will it will remove alignment of second para also. I really appricite you any comment regarding this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 replaceFirst 函数。
Use the replaceFirst function.
我想向您展示另一种方法。使用 CSS 伪类:
:first-child
会非常简单。根据上面的代码:第二件事是使用 JavaScript 或任何 JS 库(例如 jQuery)从第一个
p
元素中删除此属性,例如:I'd like to show you another way for that. It would be quite simple to use CSS pseudo-class:
:first-child
. According to your code above:Second thing would be to use JavaScript or any JS library, like jQuery to remove this property from first
p
element, e.g.: