1、创建表格
Sample code – Traversing an HTML Table with Javascr ipt and DOM Interfaces
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]Note the order in which we created the elements and the text node: First we created the TABLE element. Next, we created the TBODY e
问题
你想将HTML或者XML实体如 &entity; 或 code; 替换为对应的文本。 再者,你需要转换文本中特定的字符(比如, 或 &)。
解决方案
如果你想替换文本字符串中的 ‘’ ,使用 html.escape() 函数可以很容易的完成。比如:
>>> s = 'Elements are written as "text".'
>>> import html
>>> print(s)
Elements are written