text 属性
- @JSName('textContent')
节点及其所有子节点中的所有文本。
其他资源
- Node.textContent 来自 MDN。
实现
@JSName('textContent')
/**
* All text within this node and its descendants.
*
* ## Other resources
*
* * [Node.textContent](https://mdn.org.cn/en-US/docs/Web/API/Node.textContent)
* from MDN.
*/
String? get text native;
- @JSName('textContent')
实现
@JSName('textContent')
set text(String? value) native;