删除 HTML 使用 Java 删除对齐方式

发布于 2024-09-24 14:45:44 字数 395 浏览 0 评论 0原文

我遇到了删除 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空‖城人不在 2024-10-01 14:45:44

使用 replaceFirst 函数。

Use the replaceFirst function.

那些过往 2024-10-01 14:45:44

我想向您展示另一种方法。使用 CSS 伪类::first-child 会非常简单。根据上面的代码:


body p:first-child { text-align: left !important; }

第二件事是使用 JavaScript 或任何 JS 库(例如 jQuery)从第一个 p 元素中删除此属性,例如:


$(document).ready(function(){
    $("p").first().css("text-align","left");
});

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:


body p:first-child { text-align: left !important; }

Second thing would be to use JavaScript or any JS library, like jQuery to remove this property from first p element, e.g.:


$(document).ready(function(){
    $("p").first().css("text-align","left");
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文