增加comments属性

This commit is contained in:
g1879 2021-01-04 17:23:31 +08:00
parent 744e09c649
commit 0f9f52b1f6
2 changed files with 10 additions and 8 deletions

View File

@ -697,6 +697,7 @@ element.html # Return element outerHTML
element.inner_html # Return element innerHTML
element.tag # Return element tag name
element.text # Return element innerText value
element.comments # Returns the list of comments within the element
element.link # Returns absolute href or src value of the element.
element.texts() # Returns the text of all direct child nodes in the element, including elements and text nodes, you can specify to return only text nodes
element.attrs # Return a dictionary of all attributes of the element
@ -1905,15 +1906,17 @@ Return all attributes and values of the element in a dictionary.
Returns: dict
### text
Returns the text inside the element.
Returns: str
### comments
Returns the list of comments within the element
Returns: list
### link
@ -1921,8 +1924,6 @@ Returns absolute href or src value of the element.
Returns: str
### css_path
Returns the absolute path of the element css selector.
@ -2377,15 +2378,17 @@ Returns the names and values of all attributes of the element in dictionary form
Returns: dict
### text
Returns the text within the element, namely innerText.
Returns: str
### comments
Returns the list of comments within the element
Returns: list
### link
@ -2393,8 +2396,6 @@ Returns absolute href or src value of the element.
Returns: str
### css_path
Returns the absolute path of the element css selector.

View File

@ -663,6 +663,7 @@ element.html # 返回元素 outerHTML
element.inner_html # 返回元素 innerHTML
element.tag # 返回元素 tag name
element.text # 返回元素 innerText 值
element.comments # 返回元素内注释列表
element.link # 返回元素 href 或 src 绝对 url
element.texts() # 返回元素内所有直接子节点的文本,包括元素和文本节点,可指定只返回文本节点
element.attrs # 返回元素所有属性的字典