파서를 사용하여 요소를 보이지 않게 설정하는 방법을 알아 내려고하고 있습니다. 여기 내가 불행히도 작동하지 않은 시도 :PHP 간단한 HTML DOM 파서 디스플레이 없음
$button->style = "display:none";
어떤 아이디어? 감사합니다
파서를 사용하여 요소를 보이지 않게 설정하는 방법을 알아 내려고하고 있습니다. 여기 내가 불행히도 작동하지 않은 시도 :PHP 간단한 HTML DOM 파서 디스플레이 없음
$button->style = "display:none";
어떤 아이디어? 감사합니다
사용 설정의 setAttribute 방법 http://php.net/manual/en/domelement.setattribute.php
$button->setAttribute("style", "display:none");
사용중인 파서를 모르지만 일부 HTML 요소를 숨기려면 으로 설정해야합니다.
button
의 style
속성에 액세스하여 display:none
으로 설정/확장하십시오.
(즉, 당신이 사용하고있는 구성 요소 인 경우) http://simplehtmldom.sourceforge.net/에 주어진 기준에 따르면,이 그것을 수행해야합니다
$dom->find("button[id=save]",0)->style = 'display:none';
을 여기에 내 솔루션을
$html->find('div[style=display:none]')
'$ 버튼'이란 무엇입니까? – hakre
일부
'