【发布时间】:2016-07-12 07:19:20
【问题描述】:
我已经使用 DOMDocument 加载了一些 html,如下所示:
$dom = new DOMDocument();
$dom->loadHTML($somehtml);
foreach($dom->getElementsByTagName('*') as $element ){
if($element->getAttribute("type")=='radio') {
// I need to set the radio group checked value
}
}
每组有 3 个单选按钮,每组都有相同的名称。如何将特定单选按钮的选中属性设置为 true?我假设我需要以某种方式访问集合?
【问题讨论】:
-
这里有可能有用的文档:nusphere.com/kb/phpmanual/…
标签: php dom radio-button