Skip to content

Commit 28ae351

Browse files
committed
Update README.md
1 parent 8b8a797 commit 28ae351

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Filter |Description
140140
[attribute$=value] |Matches elements that have the specified attribute and it ends with a certain value.
141141
[attribute*=value] |Matches elements that have the specified attribute and it contains a certain value.
142142

143-
### Текст, комментарии (не реализовано)
143+
### Текст, комментарии
144144

145145
```php
146146

@@ -160,11 +160,9 @@ $es = $html->find('comment');
160160
// Get a attribute ( If the attribute is non-value attribute (eg. checked, selected...), it will returns true or false)
161161
$value = $e->href;
162162

163-
// Не реализовано
164163
// Set a attribute(If the attribute is non-value attribute (eg. checked, selected...), set it's value as true or false)
165164
$e->href = 'my link';
166165

167-
// Не реализовано
168166
// Remove a attribute, set it's value as null!
169167
$e->href = null;
170168

@@ -194,7 +192,7 @@ $e->outertext |Read or write the outer HTML text of element.
194192
$e->innertext |Read or write the inner HTML text of element.
195193
$e->plaintext |Read or write the plain text of element.
196194

197-
### Трюки (не реализовано)
195+
### Трюки
198196

199197
```php
200198

0 commit comments

Comments
 (0)