是否可以向 HtmlTextWriter WriteBreak 添加属性

发布于 2024-09-04 08:44:38 字数 346 浏览 5 评论 0原文

使用 HtmlTextWriter.WriteBreak 方法时是否可以将类添加到 br 标记?

writer.AddAttribute(HtmlTextWriterAttribute.Class, "className");
writer.WriteBreak();

我需要一个符合 xHtml 的 html 输出,因此 WriteBreak 是完美的,因为它写道

<br />

我想向 br 添加一个类,以便我有

<br class="className" />

Is it possible to add a class to a br tag when using the HtmlTextWriter.WriteBreak method?

writer.AddAttribute(HtmlTextWriterAttribute.Class, "className");
writer.WriteBreak();

I need an xHtml compliant html output and therefore the WriteBreak is perfect as it writes

<br />

I want to add a class to the br so that I have

<br class="className" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

想你的星星会说话 2024-09-11 08:44:38

您可以手动执行此操作,如下所示:

writer.WriteBeginTag("br");
writer.WriteAttribute("class", "className");
writer.Write(HtmlTextWriter.SelfClosingTagEnd);

You can do it manually, like this:

writer.WriteBeginTag("br");
writer.WriteAttribute("class", "className");
writer.Write(HtmlTextWriter.SelfClosingTagEnd);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文