动态文本区域内的 html 表格

发布于 2024-11-08 16:52:42 字数 125 浏览 0 评论 0原文

是否可以使用 .htmlText 方法将 html 显示为动态文本区域内的表格?

还有一个附加问题:是否有其他方法可以在文本中显示表格?

Is it possible to display an html <table> as a table inside an dynamic textarea using .htmlText method?

And an additional question: is there any other way to display a table inside a text?

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

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

发布评论

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

评论(1

宛菡 2024-11-15 16:52:42

文本区域就是它们的本质:文本区域。
然而,它似乎适用于基本表格。
我尝试了类似的方法,并实例化了一个名为 toto 的文本区域:

toto.html = true;

toto.htmlText = "<table> <tr> <td> a </td> <td> b </td> </tr> <tr> <td> c </td> <td> d </td> </tr> <tr> <td> e </td> <td> f </td> </tr> </table>"; //spaces seem very important

但是我必须警告您,文本区域并不意味着显示完整的 HTML。即使他们拥有一些相关的特征。如果您必须显示表格,那么肯定可以采用不同的方式。

Textareas are what they are : text areas.
However, it seems to work for basic tables.
I tried something like that with and instantiated a textarea named toto :

toto.html = true;

toto.htmlText = "<table> <tr> <td> a </td> <td> b </td> </tr> <tr> <td> c </td> <td> d </td> </tr> <tr> <td> e </td> <td> f </td> </tr> </table>"; //spaces seem very important

However I have to warn you that text areas are not meant to display full HTML. Even if they possess some features about it. If you have to display a table it's surely possible to do it differently.

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