mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
增加comments属性
This commit is contained in:
parent
744e09c649
commit
0f9f52b1f6
17
README.en.md
17
README.en.md
@ -697,6 +697,7 @@ element.html # Return element outerHTML
|
|||||||
element.inner_html # Return element innerHTML
|
element.inner_html # Return element innerHTML
|
||||||
element.tag # Return element tag name
|
element.tag # Return element tag name
|
||||||
element.text # Return element innerText value
|
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.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.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
|
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
|
Returns: dict
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### text
|
### text
|
||||||
|
|
||||||
Returns the text inside the element.
|
Returns the text inside the element.
|
||||||
|
|
||||||
Returns: str
|
Returns: str
|
||||||
|
|
||||||
|
### comments
|
||||||
|
|
||||||
|
Returns the list of comments within the element
|
||||||
|
|
||||||
|
Returns: list
|
||||||
|
|
||||||
### link
|
### link
|
||||||
|
|
||||||
@ -1921,8 +1924,6 @@ Returns absolute href or src value of the element.
|
|||||||
|
|
||||||
Returns: str
|
Returns: str
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### css_path
|
### css_path
|
||||||
|
|
||||||
Returns the absolute path of the element css selector.
|
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
|
Returns: dict
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### text
|
### text
|
||||||
|
|
||||||
Returns the text within the element, namely innerText.
|
Returns the text within the element, namely innerText.
|
||||||
|
|
||||||
Returns: str
|
Returns: str
|
||||||
|
|
||||||
|
### comments
|
||||||
|
|
||||||
|
Returns the list of comments within the element
|
||||||
|
|
||||||
|
Returns: list
|
||||||
|
|
||||||
### link
|
### link
|
||||||
|
|
||||||
@ -2393,8 +2396,6 @@ Returns absolute href or src value of the element.
|
|||||||
|
|
||||||
Returns: str
|
Returns: str
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### css_path
|
### css_path
|
||||||
|
|
||||||
Returns the absolute path of the element css selector.
|
Returns the absolute path of the element css selector.
|
||||||
|
@ -663,6 +663,7 @@ element.html # 返回元素 outerHTML
|
|||||||
element.inner_html # 返回元素 innerHTML
|
element.inner_html # 返回元素 innerHTML
|
||||||
element.tag # 返回元素 tag name
|
element.tag # 返回元素 tag name
|
||||||
element.text # 返回元素 innerText 值
|
element.text # 返回元素 innerText 值
|
||||||
|
element.comments # 返回元素内注释列表
|
||||||
element.link # 返回元素 href 或 src 绝对 url
|
element.link # 返回元素 href 或 src 绝对 url
|
||||||
element.texts() # 返回元素内所有直接子节点的文本,包括元素和文本节点,可指定只返回文本节点
|
element.texts() # 返回元素内所有直接子节点的文本,包括元素和文本节点,可指定只返回文本节点
|
||||||
element.attrs # 返回元素所有属性的字典
|
element.attrs # 返回元素所有属性的字典
|
||||||
|
Loading…
x
Reference in New Issue
Block a user