simple_html_dom 在 html 评论部分找到输入
simple_html_dom finding input in html commented section
我需要在 html 评论部分找到 html 输入
<!-- <input type="hidden" name="ab_cde" value="12345" /> -->
代码
foreach($html->find('input') as $element)
{
}
无法找到它。怎么做到的?
你可以通过 $html->find('comment')
然后在其中使用正则表达式进行输入,或将评论内容初始化为另一个 html 对象 (http://php.net/manual/en/domdocument.loadhtml.php),以便像您之前尝试的那样进行搜索。
我需要在 html 评论部分找到 html 输入
<!-- <input type="hidden" name="ab_cde" value="12345" /> -->
代码
foreach($html->find('input') as $element)
{
}
无法找到它。怎么做到的?
你可以通过 $html->find('comment')
然后在其中使用正则表达式进行输入,或将评论内容初始化为另一个 html 对象 (http://php.net/manual/en/domdocument.loadhtml.php),以便像您之前尝试的那样进行搜索。