将 HTML 标签转换为小写
我正在开发 IE6 的 Intranet 项目(我知道...),我需要从 div 输出一些 HTML 代码。
我使用 $('#output').text($('#container').html());
但 IE6 以大写形式输出所有代码:
<TABLE border=1>
<TR>
<TD>Test Content</TD>
</TR>
</TABLE>
How can I conversion HTML tag to lowercase using jQuery?
如果有一个可以递归地遍历 DOM 树的插件会很有用。
I working on an intranet project for IE6 (i know...) and I need to output some HTML code from a div.
I use $('#output').text($('#container').html());
But IE6 outputs all the code in uppercase:
<TABLE border=1>
<TR>
<TD>Test Content</TD>
</TR>
</TABLE>
How can I convert HTML tags to lowercase using jQuery?
Would be useful to have a plugin that could recursively go trough the DOM-tree.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
Try
如果使用 .html() 而不是 .text() 会怎样?
What if you use .html() instead of .text()?